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:

config/larupload.php
<?php

return [
    'ffmpeg' => [
        'ffmpeg.binaries'  => '/usr/local/bin/ffmpeg',
        'ffprobe.binaries' => '/usr/local/bin/ffprobe'
    ]
];

The ffmpeg binary is used for video and audio processing, while the ffprobe binary is used for metadata extraction.

Last updated