Last active
December 11, 2015 10:48
-
-
Save Swop/4588969 to your computer and use it in GitHub Desktop.
Simple steps to create a GIF from a screencast (OSX but works with Linux)
This file contains 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
# Install ffmepg (for the screencast) & imagemagick (to optimize the GIF file for web usage) | |
brew install ffmpeg | |
brew install imagemagick | |
# Make the screencast and compress it | |
ffmpeg -i ScreenFlow.mov -pix_fmt rgb24 output.gif | |
convert -layers Optimize output.gif output_optimized.gif | |
# Upload it somewere in the cloud... | |
# ... and use the file in the desire website. Here's the markdown syntax: | |
# ![My demo](http://path_to_my_file/output_optimized.gif) | |
# Thanks to Schneems (Richard Schneeman) http://schneems.com/post/41104255619/use-gifs-in-your-pull-request-for-good-not-evil |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment