Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ffmpeg output to multiple files simultaneously

Tags:

ffmpeg

What format/syntax is needed for ffmpeg to output the same input to several different "output" files? For instance different formats/different bitrates? Does it support parallelism on the output?

like image 615
rogerdpack Avatar asked Aug 20 '12 15:08

rogerdpack


2 Answers

The ffmpeg documentation has been updated with lots more information about this and options depend on the version of ffmpeg you use: http://ffmpeg.org/trac/ffmpeg/wiki/Creating%20multiple%20outputs

like image 176
M K. Price Avatar answered Sep 21 '22 12:09

M K. Price


From FFMpeg documentation, FFmpeg writes to an arbitrary number of output "files".

Just make sure each output file (or stream), is preceded by the proper output options.

like image 39
Dmitry Shkuropatsky Avatar answered Sep 23 '22 12:09

Dmitry Shkuropatsky