I would like to create an h264 or divx movie from frames that I generate in a python script in matplotlib. There are about 100k frames in this movie.
In examples on the web [eg. 1], I have only seen the method of saving each frame as a png and then running mencoder or ffmpeg on these files. In my case, saving each frame is impractical. Is there a way to take a plot generated from matplotlib and pipe it directly to ffmpeg, generating no intermediate files?
Programming with ffmpeg's C-api is too difficult for me [eg. 2]. Also, I need an encoding that has good compression such as x264 as the movie file will otherwise be too large for a subsequent step. So it would be great to stick with mencoder/ffmpeg/x264.
Is there something that can be done with pipes [3]?
[1] http://matplotlib.sourceforge.net/examples/animation/movie_demo.html
buffer = fig.canvas.tostring_rgb(), and the width and height of the figure in pixels withfig.canvas.get_width_height()(orfig.bbox.width, etc) – Joe Kington Nov 5 '10 at 14:34-f image2pipeoption so that it expects a series of images), or from a local socket (egudp://localhost:some_port) and writing to the socket in python... So far, only partial success... I feel like I'm almost there, though... I'm just not familiar enough with ffmpeg... – Joe Kington Nov 5 '10 at 22:42ffmpeg -f image2pipe -vcodec mjpeg -i - ouput.whatever. You can open asubprocess.Popen(cmdstring.split(), stdin=subprocess.PIPE)and write each frame to itsstdin) I'll post a more detailed example if I get a chance... – Joe Kington Nov 5 '10 at 23:55