Created
February 16, 2021 21:05
-
-
Save bblanchon/53d70a55dee85fe504af4cd9710e95d3 to your computer and use it in GitHub Desktop.
GIF Slideshow with ImageMagick
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
magick \ | |
\( -delay 100 image-00.png \) \ | |
\( -delay 10 image-00.png image-01.png -morph 3 -delete 0 \) \ | |
\( -delay 100 image-01.png \) \ | |
\( -delay 10 image-01.png image-02.png -morph 3 -delete 0 \) \ | |
\( -delay 100 image-02.png \) \ | |
\( -delay 10 image-02.png image-03.png -morph 3 -delete 0 \) \ | |
\( -delay 100 image-03.png \) \ | |
\( -delay 10 image-03.png image-04.png -morph 3 -delete 0 \) \ | |
\( -delay 200 image-04.png \) \ | |
-layers Optimize output.gif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment