Skip to content

Instantly share code, notes, and snippets.

View achautha's full-sized avatar

Atharva Chauthaiwale achautha

View GitHub Profile
@smockle
smockle / gif.sh
Last active July 25, 2020 05:34
Convert .mov to .gif in OS X with ffmpeg & imagemagick
ffmpeg -i in.mov -vf scale=800:-1 -r 10 -f image2pipe -vcodec ppm - | convert -delay 5 -layers Optimize -loop 0 - out.gif