+
+
Change field order of an interlaced video
+
ffmpeg -i input_file -c:v prores -filter:v setfield=tff output_file
+
+ - ffmpeg
- starts the command
+ - -i input_file
- path, name and extension of the input file
+ - -filter:v setfield=tff
- Sets the field order to top field first. Use
setfield=bff
for bottom field first.
+ - -c:v prores
- Tells ffmpeg to transcode the video stream into Apple ProRes 422. Experiment with using other codecs.
+ - output_file
- path, name and extension of the output file
+
+
+