is anyone able to help me here please?
Aug 3, 2023
4
Level 7
error : "Unable to load FFProbe"
Please help, I am getting: error: "Unable to load FFProbe"
I have downloaded ffmpeg.exe ffPlay.exe ffProbe.exe
I have added to environment files, I have tested, all working but when I try and upload an MP$ file, I get the error Unable to load FFProbe
here is teh bottom of my .ENV file:
FFMPEG_BINARIES=C:\PATH_programs\ffmpeg
FFPROBE_BINARIES=C:\PATH_programs\ffprobe
here is my laravel-ffmpeg.php file:
<?php
return [
// 'ffmpeg' => [
// 'binaries' => env('FFMPEG_BINARIES', 'C:\PATH_programs\ffmpeg'),
// 'threads' => 12, // set to false to disable the default 'threads' filter
// ],
// 'ffprobe' => [
// 'binaries' => env('FFPROBE_BINARIES', 'C:\PATH_programs\ffprobe'),
// ],
'ffmpeg.binaries' => env('FFMPEG_BINARY', 'C:\PATH_programs\ffmpeg'),
'ffprobe.binaries' => env('FFPROBE_BINARY', 'C:\PATH_programs\ffprobe'),
'timeout' => 3600,
'log_channel' => env('LOG_CHANNEL', 'stack'), // set to false to completely disable logging
'temporary_files_root' => env('FFMPEG_TEMPORARY_FILES_ROOT', sys_get_temp_dir()),
'temporary_files_encrypted_hls' => env('FFMPEG_TEMPORARY_ENCRYPTED_HLS', env('FFMPEG_TEMPORARY_FILES_ROOT', sys_get_temp_dir())),
];
Please help, why is there always a problem with everything?
Please or to participate in this conversation.