Created
September 22, 2016 17:42
-
-
Save nucleartide/e6cb30ee15419def07f8cb8516c545d1 to your computer and use it in GitHub Desktop.
Make gifs on Mac (from @Kitler on ember-community's slack)
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
# 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