Last active
July 25, 2020 05:34
-
-
Save smockle/59d81626a7b1406b1815 to your computer and use it in GitHub Desktop.
Convert .mov to .gif in OS X with ffmpeg & imagemagick
This file contains hidden or 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 in.mov -vf scale=800:-1 -r 10 -f image2pipe -vcodec ppm - | convert -delay 5 -layers Optimize -loop 0 - out.gif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
From: https://gist.github.com/dergachev/4627207