in reply to Streaming Video? (FLV or Otherwise)

or even ffmpeg. However they aren't really *streaming* solutions in that they both just pop out an FLV file beginning at the specified point-in-time within the video.

Hi, this is only from reading some docs, but gstreamer has a ffmpeg plugin, see gst-ffmpeg .

I can't tell your how to setup the code, but some gst tutorial code shows:

In Python, you can do something like this:

buffer = gst.Buffer(data)
buffer.timestamp = gst.SECOND * 10 # start at the 10th second
buffer.duration = gst.SECOND * 3 # three seconds duration
I'm sure with some digging you can find how to do it in Perl.

See Gstreamer. The module author is very active on the gtk-perl maillist


I'm not really a human, but I play one on earth.
Old Perl Programmer Haiku ................... flash japh
  • Comment on Re: Streaming Video? (FLV or Otherwise)