diff --git a/index.html b/index.html index f8d4f8f..0b0bf40 100644 --- a/index.html +++ b/index.html @@ -74,7 +74,7 @@ @@ -704,13 +705,13 @@ e.g.: ffmpeg -f concat -safe 0 -i mylist.txt -c copy output_file-i input_file
Takes in a normal file.
-c copy
Use stream copy mode to re-mux instead of re-encode.
-map 0
tells FFmpeg to map all streams of the input to the output.
-
-f segment
Use segment muxer for generating the output.
+
-f segment
Use segment muxer for generating the output.
-segment_time 60
Set duration of each segment (in seconds). This example creates segments with max. duration of 60s each.
-reset_timestamps 1
Reset timestamps of each segment to 0. Meant to ease the playback of the generated segments.
output_file-%03d.mkv

Path, name and extension of the output file.
- In order to have an incrementing number in each segment filename, FFmpeg supports printf-style syntax for a counter.

+ In order to have an incrementing number in each segment filename, FFmpeg supports printf-style syntax for a counter.

In this example, '%03d' means: 3-digits, zero-padded
Examples:

-

For more information, check out the FFmpeg wiki Filtering Guide.

+

For more information, check out the FFmpeg wiki Filtering Guide.