Gif output not as smooth when selecting a sequence of files individually

Posted by Keikoku on Super User See other posts from Super User or by Keikoku
Published on 2013-10-30T02:37:53Z Indexed on 2013/10/30 3:59 UTC
Read the original article Hit count: 331

Filed under:

I have a sequence of images 001.png 002.png 003.png that I would like to combine into an animation.

I used the following command

convert -dispose 3 -loop 0 *.png out.gif

And it looks ok. However, when I tried this

convert -dispose 3 -loop 0 "001.png" "002.png" "003.png" out2.gif

out2.gif was not as "smooth" as out.gif.

Why is there a difference in the output between the two commands, which seem to mean the same thing?

© Super User or respective owner

Related posts about imagemagick