Skip to content

Instantly share code, notes, and snippets.

@nucleartide
Created September 22, 2016 17:42
Show Gist options
  • Save nucleartide/e6cb30ee15419def07f8cb8516c545d1 to your computer and use it in GitHub Desktop.
Save nucleartide/e6cb30ee15419def07f8cb8516c545d1 to your computer and use it in GitHub Desktop.
Make gifs on Mac (from @Kitler on ember-community's slack)
# Prerequisits
* ffmpeg (brew install ffmpeg)
* imagemagick (brew install imagemagick)
# Steps
1. Use quicktime to capture your video and save it
2. `ffmpeg -i source.mov -vf scale=320:-1 -r 10 -f image2pipe -vcodec ppm - | convert -delay 5 -loop 0 - output.gif`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment