Skip to content

Instantly share code, notes, and snippets.

@githubutilities
Last active November 10, 2015 03:01
Show Gist options
  • Select an option

  • Save githubutilities/9883dca4475e19a9b4fd to your computer and use it in GitHub Desktop.

Select an option

Save githubutilities/9883dca4475e19a9b4fd to your computer and use it in GitHub Desktop.
Changing GIF delay

Changing GIF delay

identify -verbose no.gif | grep Delay
convert -delay 3x100 no.gif no.fast.gif

Fasten GIF By Removing Frames

Since some program like internet explorer has dalay down limit, in which case program will replace very short per-frame delay with a default delay, the best way to solve this problem is by removing frames from original gif. For further reference, please refer to here.

deleting frames using gifsicle

# --batch, -b modify on original file
# delete 4th frame because it counts from 0
gifsicle -b haha.gif --delete '#3'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment