Browse code

doc/muxers: specify that tee needs -map.

Address trac ticket #2311.

Nicolas George authored on 2013/03/01 03:42:21
Showing 1 changed files
... ...
@@ -773,10 +773,10 @@ the options values contain a special character or the ':' separator, they
773 773
 must be escaped; note that this is a second level escaping.
774 774
 
775 775
 Example: encode something and both archive it in a WebM file and stream it
776
-as MPEG-TS over UDP:
776
+as MPEG-TS over UDP (the streams need to be explicitly mapped):
777 777
 
778 778
 @example
779
-ffmpeg -i ... -c:v libx264 -c:a mp2 -f tee
779
+ffmpeg -i ... -c:v libx264 -c:a mp2 -f tee -map 0:v -map 0:a
780 780
   "archive-20121107.mkv|[f=mpegts]udp://10.0.1.255:1234/"
781 781
 @end example
782 782