Browse code

doc/muxers: remove "-strict experimental" from tee muxer examples

Examples use the native FFmpeg AAC encoder but it is no longer
considered experimental and therefore not required.

Signed-off-by: Lou Logan <lou@lrcd.com>

Lou Logan authored on 2016/12/09 06:06:05
Showing 1 changed files
... ...
@@ -1661,7 +1661,7 @@ keyframes packets, as requested by the MPEG-TS format. The select
1661 1661
 option is applied to @file{out.aac} in order to make it contain only
1662 1662
 audio packets.
1663 1663
 @example
1664
-ffmpeg -i ... -map 0 -flags +global_header -c:v libx264 -c:a aac -strict experimental
1664
+ffmpeg -i ... -map 0 -flags +global_header -c:v libx264 -c:a aac
1665 1665
        -f tee "[bsfs/v=dump_extra]out.ts|[movflags=+faststart]out.mp4|[select=a]out.aac"
1666 1666
 @end example
1667 1667
 
... ...
@@ -1670,7 +1670,7 @@ As below, but select only stream @code{a:1} for the audio output. Note
1670 1670
 that a second level escaping must be performed, as ":" is a special
1671 1671
 character used to separate options.
1672 1672
 @example
1673
-ffmpeg -i ... -map 0 -flags +global_header -c:v libx264 -c:a aac -strict experimental
1673
+ffmpeg -i ... -map 0 -flags +global_header -c:v libx264 -c:a aac
1674 1674
        -f tee "[bsfs/v=dump_extra]out.ts|[movflags=+faststart]out.mp4|[select=\'a:1\']out.aac"
1675 1675
 @end example
1676 1676
 @end itemize