laravel-ffmpeg
laravel-ffmpeg copied to clipboard
error : "Unable to load FFProbe"
There is no instructions anywhere to download FFMpeg or FFProbe. I have downloaded these put them in a folder on drive C and pointed my environment variables to the folder so they work when I open terminal and type FFMpeg. Regarding my Laravel project, I have added the paths to .ENV file and my laravel-ffmpeg.php file:
.ENV:
FFMPEG_BINARY=C:\PATH_programs\ffmpeg
FFPROBE_BINARY=C:\PATH_programs\ffprobe
laravel-ffmpeg.php
'ffmpeg.binaries' => env('FFMPEG_BINARY', 'C:\PATH_programs\ffmpeg'),
'ffprobe.binaries' => env('FFPROBE_BINARY', 'C:\PATH_programs\ffprobe'),
but still, I'm getting the error
No you can Ffmpeg folder move to root directory and replace with this code .ENV
FFMPEG_BINARIES=ffmpeg/ffmpeg
FFPROBE_BINARIES=ffmpeg/ffprobe
laravel-ffmpeg.php
'ffmpeg.binaries' => env('FFMPEG_BINARY', 'ffmpeg/ffmpeg'),
'ffprobe.binaries' => env('FFPROBE_BINARY', 'ffmpeg/ffprobe'),