Skip to content

Instantly share code, notes, and snippets.

@dopey
Created November 29, 2018 22:43
Show Gist options
  • Save dopey/684a6c74a80f5ca7d6a1a14b63146e02 to your computer and use it in GitHub Desktop.
Save dopey/684a6c74a80f5ca7d6a1a14b63146e02 to your computer and use it in GitHub Desktop.
#!/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