summaryrefslogtreecommitdiff
path: root/doc/muxers.texi
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2012-08-16 00:23:17 +0200
committerStefano Sabatini <stefasab@gmail.com>2012-08-18 12:32:54 +0200
commit69fc2489c4059886fcda2de91029b43447330951 (patch)
tree0649e1fb216e009c9434b3310e6e0fbd4772de70 /doc/muxers.texi
parent2d31ae2921e5d6abfdc50d8731708d7cf0e7ff20 (diff)
doc/muxers: simplify segment examples
The simplifications are due to the recent option changes.
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 2a191a6144..b5a27d1844 100644
--- a/doc/muxers.texi
+++ b/doc/muxers.texi
@@ -559,7 +559,7 @@ ffmpeg -i in.mkv -codec copy -map 0 -f segment -segment_list out.list out%03d.nu
As the example above, but segment the input file according to the split
points specified by the @var{segment_times} option:
@example
-ffmpeg -i in.mkv -codec copy -map 0 -f segment -segment_list_type ext -segment_list out.list -segment_list_size 0 -segment_times 1,2,3,5,8,13,21 out%03d.nut
+ffmpeg -i in.mkv -codec copy -map 0 -f segment -segment_list out.ext -segment_times 1,2,3,5,8,13,21 out%03d.nut
@end example
@item
@@ -569,7 +569,7 @@ with the segment option @var{segment_time_delta} to account for
possible roundings operated when setting key frame times.
@example
ffmpeg -i in.mkv -force_key_frames 1,2,3,5,8,13,21 -vcodec mpeg4 -acodec pcm_s16le -map 0 \
--f segment -segment_list_type ext -segment_list out.list -segment_list_size 0 -segment_times 1,2,3,5,8,13,21 -segment_time_delta 0.05 out%03d.nut
+-f segment -segment_list out.ext -segment_times 1,2,3,5,8,13,21 -segment_time_delta 0.05 out%03d.nut
@end example
In order to force key frames on the input file, transcoding is
required.