diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2013-02-28 19:42:21 +0100 |
---|---|---|
committer | Nicolas George <nicolas.george@normalesup.org> | 2013-03-05 14:20:18 +0100 |
commit | 622a6f6f3b8f815edfdf3db4199ebb35ae618725 (patch) | |
tree | 97ab16fa45cb0b0038754229fe4acad74bd59c41 | |
parent | 3ab25e45744c738275992214e1f6f3c24deaa5a2 (diff) | |
download | ffmpeg-622a6f6f3b8f815edfdf3db4199ebb35ae618725.tar.gz |
doc/muxers: specify that tee needs -map.
Address trac ticket #2311.
-rw-r--r-- | doc/muxers.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/muxers.texi b/doc/muxers.texi index 6aae871280..5ba92c3adf 100644 --- a/doc/muxers.texi +++ b/doc/muxers.texi @@ -773,10 +773,10 @@ the options values contain a special character or the ':' separator, they must be escaped; note that this is a second level escaping. Example: encode something and both archive it in a WebM file and stream it -as MPEG-TS over UDP: +as MPEG-TS over UDP (the streams need to be explicitly mapped): @example -ffmpeg -i ... -c:v libx264 -c:a mp2 -f tee +ffmpeg -i ... -c:v libx264 -c:a mp2 -f tee -map 0:v -map 0:a "archive-20121107.mkv|[f=mpegts]udp://10.0.1.255:1234/" @end example |