Skip to content

Instantly share code, notes, and snippets.

View AnneTee's full-sized avatar

Anne Tomasevich AnneTee

  • Wikimedia Foundation
View GitHub Profile
@montehurd
montehurd / macOS-mov-to-gif-file-conversion.sh
Last active June 18, 2024 20:10
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.
ffmpeg -i in.mov -pix_fmt rgb8 -r 10 -f gif out.gif