+
+
Transcode an image sequence into uncompressed 10-bit video
+
ffmpeg -f image2 -i input_file_%06d.ext -c:v v210 -an output_file
+
+ - ffmpeg
- starts the command
+ - -f image2
- forces the image file de-muxer for single image files
+
+ - -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
+
+
+