Convert all jpg images from folder into animated gif.
This file contains 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 ?