Browse code

doc/muxers/segment: reword text for examples, improve consistency

Stefano Sabatini authored on 2014/09/07 20:12:41
Showing 1 changed files
... ...
@@ -956,7 +956,7 @@ argument must be a time duration specification, and defaults to 0.
956 956
 
957 957
 @itemize
958 958
 @item
959
-To remux the content of file @file{in.mkv} to a list of segments
959
+Remux the content of file @file{in.mkv} to a list of segments
960 960
 @file{out-000.nut}, @file{out-001.nut}, etc., and write the list of
961 961
 generated segments to @file{out.list}:
962 962
 @example
... ...
@@ -970,14 +970,14 @@ ffmpeg -i in.mkv -f segment -segment_time 10 -segment_format_options movflags=+f
970 970
 @end example
971 971
 
972 972
 @item
973
-As the example above, but segment the input file according to the split
974
-points specified by the @var{segment_times} option:
973
+Segment the input file according to the split points specified by the
974
+@var{segment_times} option:
975 975
 @example
976 976
 ffmpeg -i in.mkv -codec copy -map 0 -f segment -segment_list out.csv -segment_times 1,2,3,5,8,13,21 out%03d.nut
977 977
 @end example
978 978
 
979 979
 @item
980
-As the example above, but use the @command{ffmpeg} @option{force_key_frames}
980
+Use the @command{ffmpeg} @option{force_key_frames}
981 981
 option to force key frames in the input at the specified location, together
982 982
 with the segment option @option{segment_time_delta} to account for
983 983
 possible roundings operated when setting key frame times.
... ...
@@ -996,7 +996,7 @@ ffmpeg -i in.mkv -codec copy -map 0 -f segment -segment_list out.csv -segment_fr
996 996
 @end example
997 997
 
998 998
 @item
999
-To convert the @file{in.mkv} to TS segments using the @code{libx264}
999
+Convert the @file{in.mkv} to TS segments using the @code{libx264}
1000 1000
 and @code{libfaac} encoders:
1001 1001
 @example
1002 1002
 ffmpeg -i in.mkv -map 0 -codec:v libx264 -codec:a libfaac -f ssegment -segment_list out.list out%03d.ts