Created
November 7, 2016 00:51
-
-
Save ambethia/55b5970919b66ff7e3fe5d0a3f2e05cf to your computer and use it in GitHub Desktop.
Using Imagemagick to make an animated gif from a sequence of png images
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
convert -delay 10 -resize 800x600 -loop 0 *.png animation.gif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Note,
-delay
is given in 1/100ths of a second, so10
is100ms
or 1/10th of a second, not ten seconds.