Last active
September 6, 2018 15:44
-
-
Save wes-goulet/84708ce4836e1febd54b965d48482708 to your computer and use it in GitHub Desktop.
converts an mov to gif using ffmpeg on macos
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
# 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