Skip to content

Instantly share code, notes, and snippets.

@python1981
Created November 19, 2015 12:30
Show Gist options
  • Save python1981/0e7375de0b41bd15197e to your computer and use it in GitHub Desktop.
Save python1981/0e7375de0b41bd15197e to your computer and use it in GitHub Desktop.
Convert input_60fps.mov to output_20fps.mov
ffmpeg -i input_60fps.mov -f rawvideo -pix_fmt yuv420p -vcodec rawvideo -y pipe:1 | ffmpeg -r 60 -f rawvideo -pix_fmt yuv420p -r 60 -s 1280x800 -i - -vf framestep=3 -y output_20fps.mov
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment