I want to create an animation of a calculated function. I'm not able to install ffmpeg or mencoder on the cluster I'm using to run the animation, but imagemagick is installed. matplotlib.animation
apparently supports imagemagick as a writer for animations (see here, for example). The documentation says that the supported formats are:
['png', 'jpeg', 'ppm', 'tiff', 'sgi', 'bmp', 'pbm', 'raw', 'rgba']
I recognize several of these as non-animated file types, but apparently ffmpeg supports .sgi
files in some way. It's fine if the codec that I have to use on the cluseter is obscure if I can convert it on my home computer with ffmpeg or mencoder.
How can I use imagemagick to save an animation with matplotlib?