Skip to content

Instantly share code, notes, and snippets.

View shuntksh's full-sized avatar

Shun Takahashi shuntksh

View GitHub Profile
@shuntksh
shuntksh / mov2gif.sh
Created June 30, 2016 16:19
Generate Animated GIF from Mov file on Mac with ffmpeg / imagemagick
brew install imagimagick ffmpeg
ffmpeg -i <INPUT_FILE>.mov -r 10 -f image2pipe -vcodec ppm - | convert -delay 30 -layers Optimize -loop 0 - <OUTPUT_FILE>.gif