Created
November 18, 2015 21:31
-
-
Save zallarak/46d8bacadfdf3f1bb590 to your computer and use it in GitHub Desktop.
Create gif from mp4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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