A simple repository for FFMPEG lib using PHP composer
Versions:
- ffmpeg version 6.1-static
- ffprobe version 6.1-static
composer require --prefer-dist -vvv --profile ivoglent/ffmpeg-composer-bin
Use a specified major version in composer.json
to get updates for this version.
{
"require": {
"ivoglent/ffmpeg-composer-bin": "^6.0"
}
}
Binaries of FFMPEG lib stored on @vendor/bin
vendor/bin/ffmpeg
and
vendor/bin/ffprobe
That's all
For use for example with php-ffmpeg/php-ffmpeg which support Video manipulation and preview images on PHP.
$ffmpeg = FFMpeg\FFMpeg::create(
[
'ffmpeg.binaries' => 'vendor/bin/ffmpeg',
'ffprobe.binaries' => 'vendor/bin/ffprobe'
]
);