Skip to content

Instantly share code, notes, and snippets.

@zallarak
Created November 18, 2015 21:31
Show Gist options
  • Save zallarak/46d8bacadfdf3f1bb590 to your computer and use it in GitHub Desktop.
Save zallarak/46d8bacadfdf3f1bb590 to your computer and use it in GitHub Desktop.
Create gif from mp4
#!/bin/bash
ffmpeg -i $1 -r 10 output%05d.png
convert -layers Optimize output*.png output.gif
rm output*.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment