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.