Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 631 Bytes

ffmpeg-binaries.md

File metadata and controls

31 lines (20 loc) · 631 Bytes
description
Default: System Environment

FFMpeg Binaries

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:

{% code title="config/larupload.php" %}

<?php

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

{% endcode %}

{% hint style="info" %} The ffmpeg binary is used for video and audio processing, while the ffprobe binary is used for metadata extraction. {% endhint %}