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?".
I have command below and I have to repeat the -duplicate argument to achieve an effect where each image last 15 frames before it transitions to another image using morph
"-duplicate N" copies just the last image, adding N new images. So if you want 15 in total, use "-duplicate 14".
"-morph N" operates on all the images in the current list, adding N interpolated images between each pair.
So if you want 15 static frames, 6 interpolations to the next which is also repeated, and so on, it gets a little messy. For example: generate the morphs first, then generate the duplicates, then use "-insert" or "-swap" to get them in the right order.