[theora] ogg movie out of png pics
Ralph Giles
giles at xiph.org
Tue Aug 29 10:32:35 PDT 2006
On Tue, Aug 29, 2006 at 10:30:08AM +0200, All Pebre wrote:
> mkfifo -m 660 stream.yuv ;
> mplayer "mf://*.png" -mf type=png:fps=$PFS -vo yuv4mpeg:file=stream.yuv ;
> encoder_example -o $hlim.ogg stream.yuv
Just a thought: If you script actually reads like this (serial
execution) it's dumping the entire stream.yuv into the fifo before
encoder_example gets run to drain it. So it may start blocking if
the fifo hits some limit. Try changing the semicolon (;) at the end
of the mplayer invocation to an ampersand (&). Or if you're invoking
all this from the command line, insert the & before the ;. That will
make the two run at the same time.
-r
More information about the theora
mailing list