PHP-FFMpeg/PHP-FFMpeg

PHP-FFMpeg and multiple outputs

Aperta

#173 aperta il 20 lug 2015

 (21 commenti) (2 reazioni) (1 assegnatario)PHP (915 fork)batch import
Featurehelp wanted

Metriche repository

Star
 (4641 stelle)
Metriche merge PR
 (Nessuna PR mergiata in 30 g)

Descrizione

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.

Guida contributor