I have had good success with using ffmpeg to write the video. I output a raw RGB stream and tell ffmpeg the width and height of the stream and ffmpeg then encodes each count of $width*$height*RGB bytes into one frame of the video. See App::VideoMixer, respectively (the source of) App::VideoMixer::Source::FFmpeg, which implements both the video reader and writer. The core of it is the following code:

my $in_width = 640; # this depends on your input data my $in_height = 480; # this depends on your input data my $width = 320; # this depends on what you want my $height = 200; # this depends on what you want my $file = 'test.mpg'; my $ffmpeg = 'bin/ffmpeg.exe'; my $pixel_format = 'rgb'; my $pid = open my $output, sprintf qq{| %s -y -f rawvideo -pix_fmt %s -s ${in_widt +h}x${in_height} -i "-" -f mpeg2video -s ${width}x${height} "$file"}, $ffmpeg, $pixel_format ); for my $frame (@frames) { print $writer $frame; };

In reply to Re: Fast and light-weight animation solution by Corion
in thread Fast and light-weight animation solution by perreal

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.