summaryrefslogtreecommitdiff
path: root/doc/muxers.texi
diff options
context:
space:
mode:
authorLou Logan <lou@lrcd.com>2016-12-08 12:06:05 -0900
committerLou Logan <lou@lrcd.com>2016-12-08 12:06:05 -0900
commitee795d9d26744ce61f44bb9afe2e38471d9b1724 (patch)
treef3987ad1e6c365a1e6d2cac614181ea7ea4a5b33 /doc/muxers.texi
parenta251149833505e6097c745ec97f76611ad293a3d (diff)
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>
Diffstat (limited to 'doc/muxers.texi')
-rw-r--r--doc/muxers.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/muxers.texi b/doc/muxers.texi
index 1c14adf537..075b8d3117 100644
--- a/doc/muxers.texi
+++ b/doc/muxers.texi
@@ -1661,7 +1661,7 @@ keyframes packets, as requested by the MPEG-TS format. The select
option is applied to @file{out.aac} in order to make it contain only
audio packets.
@example
-ffmpeg -i ... -map 0 -flags +global_header -c:v libx264 -c:a aac -strict experimental
+ffmpeg -i ... -map 0 -flags +global_header -c:v libx264 -c:a aac
-f tee "[bsfs/v=dump_extra]out.ts|[movflags=+faststart]out.mp4|[select=a]out.aac"
@end example
@@ -1670,7 +1670,7 @@ As below, but select only stream @code{a:1} for the audio output. Note
that a second level escaping must be performed, as ":" is a special
character used to separate options.
@example
-ffmpeg -i ... -map 0 -flags +global_header -c:v libx264 -c:a aac -strict experimental
+ffmpeg -i ... -map 0 -flags +global_header -c:v libx264 -c:a aac
-f tee "[bsfs/v=dump_extra]out.ts|[movflags=+faststart]out.mp4|[select=\'a:1\']out.aac"
@end example
@end itemize