Created
June 25, 2014 10:02
-
-
Save umpirsky/0ffd04e792586e34a0d1 to your computer and use it in GitHub Desktop.
Convert all jpg images from folder into animated gif.
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/sh | |
mogrify -verbose -resample 72x72 -resize 512x512 *.jpg | |
exiftran -a -no -i *.jpg | |
convert -verbose -delay 15 -loop 0 *.jpg fun.gif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Would be better starting by theses line, isn't it ?