PHP-FFMpeg/PHP-FFMpeg

PHP-FFMpeg and multiple outputs

Offen

#173 geöffnet am 20.07.2015

 (21 Kommentare) (2 Reaktionen) (1 zugewiesene Person)PHP (915 Forks)batch import
Featurehelp wanted

Repository-Metriken

Stars
 (4.641 Sterne)
PR-Merge-Metriken
 (Keine gemergten PRs in 30 T)

Beschreibung

According to here, ffmpeg supports transcoding to multiple output files given a single input file in one command:

ffmpeg -i input \
    -s 1280x720 -acodec … -vcodec … output1 \
    -s 640x480  -acodec … -vcodec … output2 \
    -s 320x240  -acodec … -vcodec … output3

Is this functionality available or on any roadmap for this project? As far as I can tell, $video->save() only takes a single input format / output path.

Contributor Guide