Created
November 29, 2018 22:43
-
-
Save dopey/684a6c74a80f5ca7d6a1a14b63146e02 to your computer and use it in GitHub Desktop.
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/bash | |
animtoconvert=$1 | |
# Split in frames | |
convert $animtoconvert -coalesce +adjoin temp_%04d.gif | |
# remove frames | |
rm temp_0000.gif # etc. | |
# Create the new animation & clean up everything | |
convert $( ls temp_*) -layers optimize new_animation.gif | |
rm temp_* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment