diff --git a/index.html b/index.html index 9e32667..a2ff73f 100644 --- a/index.html +++ b/index.html @@ -2035,7 +2035,7 @@ e.g.: ffmpeg -f concat -safe 0 -i mylist.txt -c copy output_file

Transcode an image sequence into uncompressed 10-bit video

-

ffmpeg -f image2 -framerate 24 -i input_file_%06d.ext -c:v v210 -an output_file

+

ffmpeg -f image2 -framerate 24 -i input_file_%06d.ext -c:v v210 output_file

ffmpeg
starts the command
-f image2
forces the image file de-muxer for single image files
@@ -2043,7 +2043,6 @@ e.g.: ffmpeg -f concat -safe 0 -i mylist.txt -c copy output_file-i input_file
path, name and extension of the input file
This must match the naming convention actually used! The regex %06d matches six digits long numbers, possibly with leading zeroes. This allows to read in ascending order, one image after the other, the full sequence inside one folder. For image sequences starting with 086400 (i.e. captured with a timecode starting at 01:00:00:00 and at 24 fps), add the flag -start_number 086400 before -i input_file_%06d.ext. The extension for TIFF files is .tif or maybe .tiff; the extension for DPX files is .dpx (or eventually .cin for old files).
-c:v v210
encodes an uncompressed 10-bit video stream
-
-an copy
no audio
output_file
path, name and extension of the output file