ImageMagick file number limit?
Sat, 2009-02-14 07:29
I have a series of frames that I want to make into an infinitely looping animated GIF. I want frames 00–18 to have a delay of 125ms but the frames after that to have a delay of 200. I try:
convert -delay 125 "resized-0[0-9].jpg" "resized-1[0-8].jpg" -delay 200 resized-19.jpg "resized-2[0-9].jpg" -loop 0 animation.gif
But animation.gif plays the first 8 frames, goes to the first, then goes in some strange order whose origins I am clueless about.
I have tried not using quotes as well.










I found the problem. The command in the OP was fine. The problem was that I used ImageMagick to resize the images in the directory to a different size than I originally planned, but did not remove the already resized files.