[FFmpeg-cvslog] doc/muxers: itemize tee examples

Stefano Sabatini git at videolan.org
Thu Sep 19 10:14:22 CEST 2013


ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Thu Sep 19 00:46:53 2013 +0200| [6230a95659da49eb1b81f31763f930f2f8af161e] | committer: Stefano Sabatini

doc/muxers: itemize tee examples

Improve rendering.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6230a95659da49eb1b81f31763f930f2f8af161e
---

 doc/muxers.texi |   10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/doc/muxers.texi b/doc/muxers.texi
index cc78b6e..bd7088b 100644
--- a/doc/muxers.texi
+++ b/doc/muxers.texi
@@ -878,15 +878,18 @@ specified by a stream specifier. If not specified, this defaults to
 all the input streams.
 @end table
 
-Example: encode something and both archive it in a WebM file and stream it
+Some examples follow.
+ at itemize
+ at item
+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):
-
 @example
 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
 
-Example: use @command{ffmpeg} to encode the input, and send the output
+ at item
+Use @command{ffmpeg} to encode the input, and send the output
 to three different destinations. The @code{dump_extra} bitstream
 filter is used to add extradata information to all the output video
 keyframes packets, as requested by the MPEG-TS format. The select
@@ -896,6 +899,7 @@ audio packets.
 ffmpeg -i ... -map 0 -flags +global_header -c:v libx264 -c:a aac -strict experimental
        -f tee "[bsfs/v=dump_extra]out.ts|[movflags=+faststart]out.mp4|[select=a]out.aac"
 @end example
+ at end itemize
 
 Note: some codecs may need different options depending on the output format;
 the auto-detection of this can not work with the tee muxer. The main example



More information about the ffmpeg-cvslog mailing list