in reply to Streaming Video? (FLV or Otherwise)
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 durationI'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
|
|---|