Created
November 19, 2015 12:30
-
-
Save python1981/0e7375de0b41bd15197e to your computer and use it in GitHub Desktop.
Convert input_60fps.mov to output_20fps.mov
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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