Skip to content

Instantly share code, notes, and snippets.

@godber
Created January 21, 2018 21:05
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 godber/c211403b9fdb52681ff54f35e4bf3ffb to your computer and use it in GitHub Desktop.
Save godber/c211403b9fdb52681ff54f35e4bf3ffb to your computer and use it in GitHub Desktop.
OS X Quicktime Screen Capture to GIF
  • Record video with OS X Quicktime Player (New Screenrecording)
brew install ffmpeg
brew install gifsicle
ffmpeg -i patrol1.mov -pix_fmt rgb24 -r 10 -f gif - | gifsicle --optimize=3 --delay=10 > patrol1a.gif

Refs: https://gist.github.com/dergachev/4627207

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment