summaryrefslogtreecommitdiff
path: root/doc/muxers.texi
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2013-07-05 18:33:30 +0200
committerStefano Sabatini <stefasab@gmail.com>2013-08-16 17:58:58 +0200
commitfaf7c356554d54be0ddb5f989791407e23753549 (patch)
tree03f1afd7620efa12466dd3b906b93a4d3f0c4dd4 /doc/muxers.texi
parent29852ffc64edc407d8d9f59651e2f4da85ebb6ca (diff)
lavf/tee: add support for bitstream filtering
This allows to apply different bitstream filters to different outputs, with no need to transcode.
Diffstat (limited to 'doc/muxers.texi')
-rw-r--r--doc/muxers.texi18
1 files changed, 17 insertions, 1 deletions
diff --git a/doc/muxers.texi b/doc/muxers.texi
index d2041885a0..52da73e955 100644
--- a/doc/muxers.texi
+++ b/doc/muxers.texi
@@ -852,11 +852,27 @@ leading or trailing spaces or any special character, it must be
escaped (see the ``Quoting and escaping'' section in the ffmpeg-utils
manual).
-Options can be specified for each slave by prepending them as a list of
+Muxer options can be specified for each slave by prepending them as a list of
@var{key}=@var{value} pairs separated by ':', between square brackets. If
the options values contain a special character or the ':' separator, they
must be escaped; note that this is a second level escaping.
+The following special options are also recognized:
+@table @option
+@item f
+Specify the format name. Useful if it cannot be guessed from the
+output name suffix.
+
+@item bsfs[/@var{spec}]
+Specify a list of bitstream filters to apply to the specified
+output. It is possible to specify to which streams a given bitstream
+filter applies, by appending a stream specifier to the option
+separated by @code{/}. If the stream specifier is not specified, the
+bistream filters will be applied to all streams in the output.
+
+Several bitstream filters can be specified, separated by ",".
+@end table
+
Example: encode something and both archive it in a WebM file and stream it
as MPEG-TS over UDP (the streams need to be explicitly mapped):