in reply to Creating a video player frontend in Perl - what are my options?

I wrote something like that using OpenGL for the display and ffmpeg as the decoder. I pipe the media files from ffmpeg to standard output as raw video frames and then push them onto the display via OpenGL. This allows fairly quick playback, but no audio control (due to the single output stream) and no backward seeking. On the upside, it was almost trivial to code and works.

  • Comment on Re: Creating a video player frontend in Perl - what are my options?

Replies are listed 'Best First'.
Re^2: Creating a video player frontend in Perl - what are my options?
by rocklee (Beadle) on Oct 21, 2008 at 12:45 UTC
    Thanks for your input - could you post some example code for this?

      I have released the code at App::VideoMixer. Of course it's rough at the edges...