We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
This is supported by the underlying driver: https://github.com/PHP-FFMpeg/PHP-FFMpeg#transcoding
$format = new \FFMpeg\Format\Video\X264; $format->on('progress', function($video, $format, $percentage) { echo "$percentage % transcoded"; });
For HLS exports:
$exporter = FFMpeg::open('steve_howe.mp4') ->exportForHLS() ->onProgress(function ($percentage) { echo "$percentage % transcoded"; });