Skip to content

Instantly share code, notes, and snippets.

@fluggo
Created July 16, 2022 23:25
Show Gist options
  • Save fluggo/a55b3b0fe2323aa37ae9da05e2399092 to your computer and use it in GitHub Desktop.
Save fluggo/a55b3b0fe2323aa37ae9da05e2399092 to your computer and use it in GitHub Desktop.
FFmpeg command to deinterlace 3:2 .m2t files
./ffmpeg \
-i /h/Videos/tape.m2t \
-c:v libx264 -profile:v main -preset:v medium -level 3.1 \
-x264opts crf=15:keyint=24:bframes=0 -aspect 16:9 -f mp4 \
-vf fieldmatch,decimate tape.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment