Skip to content

Instantly share code, notes, and snippets.

@wes-goulet
Last active September 6, 2018 15:44
Show Gist options
  • Save wes-goulet/84708ce4836e1febd54b965d48482708 to your computer and use it in GitHub Desktop.
Save wes-goulet/84708ce4836e1febd54b965d48482708 to your computer and use it in GitHub Desktop.
converts an mov to gif using ffmpeg on macos
# use gifify to output at 400px width (maintain aspect ratio)
brew install gifify
gifify -p 400:-1 esc-key.mov
### OLD - looks pixelated
# from https://superuser.com/a/436109 - see that link for optimized version as well
ffmpeg -i yesbuddy.mov -pix_fmt rgb24 output.gif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment