Skip to content

Instantly share code, notes, and snippets.

@smockle
Last active July 25, 2020 05:34
Show Gist options
  • Save smockle/59d81626a7b1406b1815 to your computer and use it in GitHub Desktop.
Save smockle/59d81626a7b1406b1815 to your computer and use it in GitHub Desktop.
Convert .mov to .gif in OS X with ffmpeg & imagemagick
ffmpeg -i in.mov -vf scale=800:-1 -r 10 -f image2pipe -vcodec ppm - | convert -delay 5 -layers Optimize -loop 0 - out.gif
@smockle
Copy link
Author

smockle commented Aug 25, 2015

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment