Re: [Matplotlib-users] Saving animations

2012-10-05 Thread Ryan May
On Fri, Oct 5, 2012 at 12:43 PM, Andreas Mueller amuel...@ais.uni-bonn.de wrote: Thanks for the tip. I didn't know about ``--verbose-debug``. It told me Unknown encoder 'libx264'. I found out I need to install libavcodec-extra-53 for it to work. Not everything is going smoothly. It would be

[Matplotlib-users] Saving animations

2012-10-04 Thread Andreas Mueller
Hi everybody. I have been trying to save some animations I made and I encountered the problem mentioned here http://sourceforge.net/mailarchive/forum.php?thread_name=CAKH0P%2BVLXthNCAZ1K2pKHYqqPiFHP5iXSFwJvEerVmvtmgGv0g%40mail.gmail.comforum_name=matplotlib-devel. I am using current master. To

Re: [Matplotlib-users] Saving animations

2012-10-04 Thread Benjamin Root
On Thu, Oct 4, 2012 at 10:02 AM, Andreas Mueller amuel...@ais.uni-bonn.dewrote: Hi everybody. I have been trying to save some animations I made and I encountered the problem mentioned

Re: [Matplotlib-users] Saving animations

2012-10-04 Thread Ryan May
On Thu, Oct 4, 2012 at 12:38 PM, Andreas Mueller amuel...@ais.uni-bonn.de wrote: On 10/04/2012 03:51 PM, Benjamin Root wrote: On Thu, Oct 4, 2012 at 10:02 AM, Andreas Mueller amuel...@ais.uni-bonn.de wrote: Hi everybody. I have been trying to save some animations I made and I encountered the

Re: [Matplotlib-users] saving animations

2010-08-25 Thread Daπid
I cannot see what is wrong, but after saving each figure you should add plt.clf() in order to delete the image and preventing memory leaks, because MPL stores one image in top of the other. For the filecode I suggest you to use something like: savefig(head+str(filecode).zfill(digits)+format,

Re: [Matplotlib-users] saving animations

2010-08-25 Thread Benjamin Root
On Tue, Aug 24, 2010 at 10:28 PM, David Pine djp...@gmail.com wrote: I am trying to save the frames from a matplotlib animation and I have a question that is undoubtedly based on a profound lack of understanding about how matplotlib/python works, but I'm hoping someone can offer me an

[Matplotlib-users] saving animations

2010-08-24 Thread David Pine
I am trying to save the frames from a matplotlib animation and I have a question that is undoubtedly based on a profound lack of understanding about how matplotlib/python works, but I'm hoping someone can offer me an explanation. The following code is excerpted from the animation examples