Skip to content

Instantly share code, notes, and snippets.

@cjwinchester
Created November 29, 2015 04:42
Show Gist options
  • Save cjwinchester/789be8fccb9cc2e00b7e to your computer and use it in GitHub Desktop.
Save cjwinchester/789be8fccb9cc2e00b7e to your computer and use it in GitHub Desktop.
Use ffmpeg and imagemagick to convert a (sideways) mp4 video into a gif.
mkdir -p goat && ffmpeg -i goat.mp4 -vf "transpose=1" -r 10 goat/goat%03d.png && convert -resize 50% -delay 5 -loop 0 goat/goat*.png goat.gif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment