From 0c03f57df6a8568860b14df27df35a7b6a80cd57 Mon Sep 17 00:00:00 2001
From: Peter B
+ Path, name and extension of the output file.
+ In this example, '%03d' means: 3-digits, zero-paddedffmpeg -f concat -safe 0 -i mylist.txt -c copy output_fileSplit file into segments
ffmpeg -i input_file -c copy -map 0 -f segment -segment_time 60 -reset_timestamps 1 output_file-%03d.mkv
-
- 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
- For example: output_file-000.mkv, output_file-001.mkv, etc.
+
+ In order to have an incrementing number in each segment filename, FFmpeg supports printf-style syntax for a counter.
+
+ Examples:
+
+
+ %03d
: 000, 001, 002, ... 999%05d
: 00000, 00001, 00002, ... 99999%d
: 0, 1, 2, 3, 4, ... 23, 24, etc.
ffmpeg -f concat -safe 0 -i mylist.txt -c copy output_file
-
+