Skip to content

Instantly share code, notes, and snippets.

@shuntksh
Created June 30, 2016 16:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shuntksh/ac80a8add98d5fc6f6e00db3fcbe4fcc to your computer and use it in GitHub Desktop.
Save shuntksh/ac80a8add98d5fc6f6e00db3fcbe4fcc to your computer and use it in GitHub Desktop.
Generate Animated GIF from Mov file on Mac with ffmpeg / imagemagick
brew install imagimagick ffmpeg
ffmpeg -i <INPUT_FILE>.mov -r 10 -f image2pipe -vcodec ppm - | convert -delay 30 -layers Optimize -loop 0 - <OUTPUT_FILE>.gif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment