Skip to content

Instantly share code, notes, and snippets.

@juliendargelos
Last active June 1, 2021 13:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juliendargelos/05a4309598ee1f648428d284cec538b8 to your computer and use it in GitHub Desktop.
Save juliendargelos/05a4309598ee1f648428d284cec538b8 to your computer and use it in GitHub Desktop.
Imagemagick command that creates a gif from a list of frames.
convert -delay 4 -loop 0 *.png output.gif
# Order the input files by naming them with increasing numbers including leading zeros.
#
# delay (centiseconds):
# 25fps <=> 4
# 30fps <=> 3.33333
# 60fps <=> 1.66667
#
# loop: number of times to cycle through the sequence or 0 for infinity
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment