Speed of gif is very fast

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Speed of gif is very fast

Post by fmw42 »

add -delay XX before reading the input image in the command that creates the animation

Code: Select all

convert -delay 50 image1 image2 ... imageN -loop 0 animation.gif
See
https://imagemagick.org/script/command- ... .php#delay
https://imagemagick.org/script/command- ... s.php#loop
https://imagemagick.org/Usage/anim_basics/
Post Reply