Re: Command-Line Arguments Too Long
Posted: 2009-04-15T17:11:21-07:00
use script with a while loop or something like that to build up your animation
something like:
convert image_0.png tmp.gif
i=1
while [ $i -lt 100 ]; do
convert tmp.gif -delay 1000 image_$i.png tmp.gif
i=`expr $i + 1`
done
convert tmp.gif -loop 0 image_animation.gif
This may not be the best solution, but seems to work for me.
I am not sure how you handle the leading zeros. But you can try with %03d. see viewtopic.php?f=1&t=13524&hilit=image+numbers
something like:
convert image_0.png tmp.gif
i=1
while [ $i -lt 100 ]; do
convert tmp.gif -delay 1000 image_$i.png tmp.gif
i=`expr $i + 1`
done
convert tmp.gif -loop 0 image_animation.gif
This may not be the best solution, but seems to work for me.
I am not sure how you handle the leading zeros. But you can try with %03d. see viewtopic.php?f=1&t=13524&hilit=image+numbers