Add arguments, they will be placed before any input or output arguments.
-
Concatenate media files using the concat
demuxer. This can also be used with stream copy, so
it is much faster than the concat
filter for most applications.
The input sources to be concatenated, they can be in different formats but they must have the same streams, codecs, timebases, etc... https://ffmpeg.org/ffmpeg-formats.html#concat-1 https://trac.ffmpeg.org/wiki/Concatenate
Returns all the arguments with which ffmpeg will be spawned.
Adds an input to the conversion.
-
Adds an output to the conversion, multiple destinations are supported using
the tee
protocol. You can use mixed destinations and multiple streams.
Both NodeJS WritableStreams and AsyncGenerators are fully supported.
A sequence of OutputDestinations to which the output will be written. If no destinations are specified the conversion will run, but any output data will be ignored.
Starts the conversion, this method is asynchronous so it must be await
'ed.
See SpawnOptions.