Last active
June 18, 2024 20:10
-
-
Save montehurd/d6647cf5a5c1859e0716 to your computer and use it in GitHub Desktop.
Simple optimized .mov to .gif conversion from macOS command line using only ffmpeg - with instructions for automatic conversion any time a .mov file is dropped into a special folder.
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
ffmpeg -i in.mov -pix_fmt rgb8 -r 10 -f gif out.gif |
Thanks!! So was your tip about using command-shift-5
to quickly record the ".mov" files!!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Super helpful tool!