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?
|
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. |
|||
|
|
|
based on http://sonnati.wordpress.com/2011/08/30/ffmpeg-–-the-swiss-army-knife-of-internet-streaming-–-part-iv/ and http://ffmpeg-users.933282.n4.nabble.com/Multiple-output-files-td2076623.html
Or you could pipe the output to a "tee" and send it to "X" other processes to actually do the encoding, like ffmpeg -i input - | tee ... which might save cpu since it might enable more output parallelism, which is apparently otherwise unavailable see http://ffmpeg.org/trac/ffmpeg/wiki/Creating%20multiple%20outputs and here |
||||
|
|
|
Is there any reason you can't just run more than one instance of Generally what I've done is run Then use that new source/input file to run x number of Where you see "..." would be where you'd put all your encoding options.
Each of the background jobs will run in parallel and will be (essentially) balanced over your cpus, so you can maximize each core. |
|||||
|