I am using ImageMagick to convert sequence of png files to an animated gif. Basically the command is
convert -delay 5 img/gif_part_*.png animation.gif
The files go from gif_part_1.png to gif_part_27.png, but the gif starts at gif_part_10.png(maybe 9) and goes to the last. You can see it here. Stack won't allow me to upload the gif file, so I'll edit it later.
So is there a restriction on the number of files I can make into a gif (now it looks like the maximum is about 18)? I am working on turtle graphics and I want to show the process when the graphics is created by recursive function. The number of png files might be hundred or more.
I have also tried using ffmpeg but could not make it working.
Update
I have tried making a gif out of two smaller gifs, and it done the job. But it is horrible way I think - that would be so much of a work, putting it all together.
I think the problem might be in naming the files. I have read somewhere, that adding zero might be necessary, since gif_part_10.png might come before gif_part_1.png.