I am trying to composite a gif of ~ 4200 png images. Each image is 25kb large. 25k times 4200 = 102MB.
convert -delay 1 `ls file-*|sort -n -t - -k 2 ` animation.gif
Why is there a memory allocation failure?
convert(282) malloc: *** mmap(size=16777216) failed (error code=12)
*** error: can't allocate region
*** set a breakpoint in malloc_error_break to debug
convert: MemoryAllocationFailed `Cannot allocate memory' @ fatal/image.c/AcquireImageInfo/337.
How can I change the limits of convert to complete the job successfully?