Skip to content

Instantly share code, notes, and snippets.

@giannisp
Created January 2, 2017 10:40
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 giannisp/330a7977e880f3496519f925b4dea3ea to your computer and use it in GitHub Desktop.
Save giannisp/330a7977e880f3496519f925b4dea3ea to your computer and use it in GitHub Desktop.
Quicktime mov screencast to gif
brew install ffmpeg
brew install gifsicle
ffmpeg -i screencast.mov -s 600x120 -pix_fmt rgb24 -r 30 -f gif - | gifsicle --optimize=3 --delay=3 > screencast.gif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment