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

[2] http://stackoverflow.com/questions/2940671

[3] http://www.ffmpeg.org/ffmpeg-doc.html#SEC41

link|improve this question

56% accept rate
I have yet to figure out a way to do this with currently maintained libraries... (I used pymedia in the past, but it's no longer maintained, and won't build on any system I use...) If it helps, you can get an RGB buffer of a matplotlib figure by using buffer = fig.canvas.tostring_rgb(), and the width and height of the figure in pixels with fig.canvas.get_width_height() (or fig.bbox.width, etc) – Joe Kington Nov 5 '10 at 14:34
OK, thanks. That's useful. I wonder if some transformation of buffer can be piped to ffmpeg. pyffmpeg has a sophisticated Cython wrapper, recently updated, for reading an avi frame by frame. But not writing. That sounds like a possible place to start for someone familiar with the ffmpeg library. Even something like matlab's im2frame would be great. – Paul Nov 5 '10 at 22:19
1  
I'm playing around with having ffmpeg read either from an input pipe (with the -f image2pipe option so that it expects a series of images), or from a local socket (eg udp://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:42
2  
For what it's worth, my problem was due to an issue with ffmpeg accepting a stream of .png's or raw RGB buffers, (there's a bug already filed: roundup.ffmpeg.org/issue1854) It works if you use jpegs. (Use ffmpeg -f image2pipe -vcodec mjpeg -i - ouput.whatever. You can open a subprocess.Popen(cmdstring.split(), stdin=subprocess.PIPE) and write each frame to its stdin) I'll post a more detailed example if I get a chance... – Joe Kington Nov 5 '10 at 23:55
That's great! I will try this tomorrow. – Paul Nov 6 '10 at 8:50
feedback

4 Answers

up vote 12 down vote accepted

After patching ffmpeg (see Joe Kington comments to my question), I was able to get piping png's to ffmpeg as follows:

import subprocess
import numpy as np
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as plt

outf = 'test.avi'
rate = 1

cmdstring = ('local/bin/ffmpeg',
             '-r', '%d' % rate,
             '-f','image2pipe',
             '-vcodec', 'png',
             '-i', 'pipe:', outf
             )
p = subprocess.Popen(cmdstring, stdin=subprocess.PIPE)

plt.figure()
frames = 10
for i in range(frames):
    plt.imshow(np.random.randn(100,100))
    plt.savefig(p.stdin, format='png')

It would not work without the patch, which trivially modifies two files and adds libavcodec/png_parser.c. I had to manually apply the patch to libavcodec/Makefile. Lastly, I removed '-number' from Makefile to get the man pages to build. With compile options,

FFmpeg version 0.6.1, Copyright (c) 2000-2010 the FFmpeg developers
  built on Nov 30 2010 20:42:02 with gcc 4.2.1 (Apple Inc. build 5664)
  configuration: --prefix=/Users/paul/local_test --enable-gpl --enable-postproc --enable-swscale --enable-libxvid --enable-libx264 --enable-nonfree --mandir=/Users/paul/local_test/share/man --enable-shared --enable-pthreads --disable-indevs --cc=/usr/bin/gcc-4.2 --arch=x86_64 --extra-cflags=-I/opt/local/include --extra-ldflags=-L/opt/local/lib
  libavutil     50.15. 1 / 50.15. 1
  libavcodec    52.72. 2 / 52.72. 2
  libavformat   52.64. 2 / 52.64. 2
  libavdevice   52. 2. 0 / 52. 2. 0
  libswscale     0.11. 0 /  0.11. 0
  libpostproc   51. 2. 0 / 51. 2. 0
link|improve this answer
Nicely done! +1 (I was never able to get ffmpeg to accept a stream of .png's, I think I need to update my version of ffmpeg...) And, just in case you were wondering, it is perfectly acceptable to mark your answer as the answer to your question. See discussion here: meta.stackoverflow.com/questions/17845/… – Joe Kington Nov 7 '10 at 14:58
Ok, I will mark it as answered. Thanks for the tips again. – Paul Nov 8 '10 at 3:53
Wow, cool. I've been trying to do the same thing. – Steve Tjoa Dec 1 '10 at 1:27
Hi @Paul, the patch link is dead. Do you know if it has been absorbed into the main branch? If not is there some way to get that patch? – Gabe Dec 23 '11 at 13:02
feedback

Converting to image formats is quite slow and adds dependencies. After looking at these page and other I got it working using raw uncoded buffers using mencoder (ffmpeg solution still wanted).

Details at: http://vokicodder.blogspot.com/2011/02/numpy-arrays-to-video.html

import subprocess

import numpy as np

class VideoSink(object) :

    def __init__( self, size, filename="output", rate=10, byteorder="bgra" ) :
            self.size = size
            cmdstring  = ('mencoder',
                    '/dev/stdin',
                    '-demuxer', 'rawvideo',
                    '-rawvideo', 'w=%i:h=%i'%size[::-1]+":fps=%i:format=%s"%(rate,byteorder),
                    '-o', filename+'.avi',
                    '-ovc', 'lavc',
                    )
            self.p = subprocess.Popen(cmdstring, stdin=subprocess.PIPE, shell=False)

    def run(self, image) :
            assert image.shape == self.size
            self.p.stdin.write(image.tostring())
    def close(self) :
            self.p.stdin.close()

I got some nice speedups.

link|improve this answer
feedback

This is great! I wanted to do the same. But, I could never compile the patched ffmpeg source (0.6.1) in Vista with MingW32+MSYS+pr enviroment... png_parser.c produced Error1 during compilation.

So, I came up with a jpeg solution to this using PIL. Just put your ffmpeg.exe in the same folder as this script. This should work with ffmpeg without the patch under Windows. I had to use stdin.write method rather than the communicate method which is recommended in the official documentation about subprocess. Note that the 2nd -vcodec option specifies the encoding codec. The pipe is closed by p.stdin.close().

import subprocess
import numpy as np
from PIL import Image

rate = 1
outf = 'test.avi'

cmdstring = ('ffmpeg.exe',
             '-y',
             '-r', '%d' % rate,
             '-f','image2pipe',
             '-vcodec', 'mjpeg',
             '-i', 'pipe:', 
             '-vcodec', 'libxvid',
             outf
             )
p = subprocess.Popen(cmdstring, stdin=subprocess.PIPE, shell=False)

for i in range(10):
    im = Image.fromarray(np.uint8(np.random.randn(100,100)))
    p.stdin.write(im.tostring('jpeg','L'))
    #p.communicate(im.tostring('jpeg','L'))

p.stdin.close()
link|improve this answer
feedback

This isn't an answer, but I'm trying to replicate the "answer".

@Paul As you say it wont work without the patch, so I'm curious what you did to patch the png parser?

here's my ffmpeg info:

FFmpeg version 0.6.1, Copyright (c) 2000-2010 the FFmpeg developers
built on Nov 30 2010 13:33:10 with gcc 4.2.1 (Apple Inc. build 5664)
configuration: 
libavutil     50.15. 1 / 50.15. 1
libavcodec    52.72. 2 / 52.72. 2
libavformat   52.64. 2 / 52.64. 2
libavdevice   52. 2. 0 / 52. 2. 0
libswscale     0.11. 0 /  0.11. 0

Here's the repeated error message I get:

Error while decoding stream #0.0
link|improve this answer
I added how I applied the patch to my answer above. Is the error without the patch? The patch adds a png parser to ffmpeg. – Paul Dec 1 '10 at 5:02
@Paul Thanks, I'll give that a try. Yes, the error is without the patch. – Andy Barbour Dec 2 '10 at 22:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.