> For the complete documentation index, see [llms.txt](https://mostafaznv.gitbook.io/larupload/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://mostafaznv.gitbook.io/larupload/advanced-usage/configuration/ffmpeg/ffmpeg-binaries.md).

# 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
<?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 %}
