FFMpeg Binaries
Default: System Environment
The ffmpeg-binaries
configuration option allows you to specify the path to the ffmpeg
and ffprobe
binaries if they are not in the system environment path.
Example:
<?php
return [
'ffmpeg' => [
'ffmpeg.binaries' => '/usr/local/bin/ffmpeg',
'ffprobe.binaries' => '/usr/local/bin/ffprobe'
]
];
Last updated