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?".
ImageMagick allows you to set memory resource limits, see http://www.imagemagick.org/script/resources.php. If you set a memory resource limit, once that limit is reached, ImageMagick caches the pixels to disk to conserve memory. If memory and your disk both point to the same flash drive than you would be forced to use web services to get around this resource constraint. Also check to see if you're using Q16 or Q8 of ImageMagick. The Q8 version only uses 8-bits per pixel, whereas the Q16 version using 16-bits per pixel (suggesting double the memory resource requirements).
so there's no out of memory problem any more but combining those images last 41 minutes where another implementation for animated gifs (GifLib) takes about 11 minutes on an iPad Air.
Write the output to PNG. How long does that take? ImageMagick emphasizes the quality of the results rather than wall-clock time. The color reduction algorithm returns superior results but is known to be slow. Try enabling dithering. Does that help? You could also create a single colormap image and map the image sequence to that single colormap with MagickMapImage() and that may run much faster.