collect scripts in oxtools
This commit is contained in:
commit
4f9c3da160
22 changed files with 1297 additions and 0 deletions
131
oxgst/video.py
Normal file
131
oxgst/video.py
Normal file
|
|
@ -0,0 +1,131 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
# vi:si:et:sw=4:sts=4:ts=4
|
||||
# GPL 2008
|
||||
import gobject
|
||||
gobject.threads_init()
|
||||
|
||||
import pygst
|
||||
pygst.require("0.10")
|
||||
import gst
|
||||
|
||||
import Image
|
||||
import time
|
||||
|
||||
from singledecodebin import SingleDecodeBin
|
||||
from imagesink import ImageSink
|
||||
|
||||
class Video(gst.Pipeline):
|
||||
|
||||
def __init__(self, uri):
|
||||
gst.Pipeline.__init__(self)
|
||||
self.duration = -1
|
||||
# queue of timestamps
|
||||
self.queue = []
|
||||
# queue callbacks
|
||||
self.callback = {}
|
||||
# extracted frames
|
||||
self.frames = {}
|
||||
|
||||
# true only if we are prerolled
|
||||
self._ready = False
|
||||
uri = 'file://' + uri
|
||||
self.log("uri : %s" % uri)
|
||||
|
||||
self.uri = uri
|
||||
|
||||
self.sbin = SingleDecodeBin(caps=gst.Caps("video/x-raw-rgb;video/x-raw-yuv"),
|
||||
uri=self.uri)
|
||||
self.csp = gst.element_factory_make("ffmpegcolorspace")
|
||||
self.sink = ImageSink()
|
||||
self.sink.connect('frame', self._frameCb)
|
||||
|
||||
self.add(self.sbin, self.csp, self.sink)
|
||||
self.csp.link(self.sink)
|
||||
|
||||
self.sbin.connect('pad-added', self._sbinPadAddedCb)
|
||||
self.set_state(gst.STATE_PAUSED)
|
||||
self.get_state()
|
||||
self.width = self.sink.width
|
||||
self.height = self.sink.height
|
||||
self.framerate = self.sink.framerate
|
||||
self.getDuration()
|
||||
self.frames = int((float(self.duration) / gst.SECOND) * float(self.framerate))
|
||||
|
||||
def _sbinPadAddedCb(self, unused_sbin, pad):
|
||||
self.log("pad : %s" % pad)
|
||||
pad.link(self.csp.get_pad("sink"))
|
||||
|
||||
def _frameCb(self, unused_thsink, frame, timestamp):
|
||||
self.log("image:%s, timestamp:%s" % (frame, gst.TIME_ARGS(timestamp)))
|
||||
|
||||
if not self._ready:
|
||||
# we know we're prerolled when we get the initial thumbnail
|
||||
self._ready = True
|
||||
elif timestamp in self.callback and self.callback[timestamp]:
|
||||
self.callback[timestamp](frame, timestamp)
|
||||
del self.callback[timestamp]
|
||||
|
||||
if timestamp in self.queue:
|
||||
self.queue.remove(timestamp)
|
||||
|
||||
if self.queue:
|
||||
# still some more thumbnails to process
|
||||
gobject.idle_add(self._getFrame, self.queue.pop(0))
|
||||
|
||||
def getDuration(self):
|
||||
if self.duration < 0:
|
||||
pads = self.sink.sink_pads()
|
||||
q = gst.query_new_duration(gst.FORMAT_TIME)
|
||||
for pad in pads:
|
||||
if pad.get_peer() and pad.get_peer().query(q):
|
||||
format, self.duration = q.parse_duration()
|
||||
return self.duration
|
||||
|
||||
def getFrame(self, timestamp, callback):
|
||||
"""
|
||||
Queue a frame request for the given timestamp,
|
||||
callback is called once frame is extracted.
|
||||
returns False if timestamp > duration
|
||||
"""
|
||||
|
||||
self.log("timestamp %s" % gst.TIME_ARGS(timestamp))
|
||||
if self.duration < 0:
|
||||
self.getDuration()
|
||||
|
||||
if timestamp > self.duration:
|
||||
self.log("timestamp %s > duration %s" % (timestamp, self.duration))
|
||||
return False
|
||||
|
||||
self.callback[timestamp] = callback
|
||||
|
||||
if self.queue or not self._ready:
|
||||
self.log('ready')
|
||||
self.queue.append(timestamp)
|
||||
else:
|
||||
|
||||
self.queue.append(timestamp)
|
||||
self._getFrame(timestamp)
|
||||
return True
|
||||
|
||||
def _getFrame(self, timestamp):
|
||||
if not self._ready:
|
||||
return
|
||||
self.log("timestamp : %s" % gst.TIME_ARGS(timestamp))
|
||||
self.seek(1.0, gst.FORMAT_TIME, gst.SEEK_FLAG_FLUSH | gst.SEEK_FLAG_ACCURATE,
|
||||
gst.SEEK_TYPE_SET, timestamp,
|
||||
gst.SEEK_TYPE_NONE, -1)
|
||||
return False
|
||||
|
||||
def frame(self, timestamp):
|
||||
mainloop = gobject.MainLoop()
|
||||
self.frames[timestamp] = None
|
||||
def callback(frame, timestamp):
|
||||
self.frames[timestamp] = frame
|
||||
mainloop.quit()
|
||||
if self.getFrame(timestamp, callback):
|
||||
mainloop.run()
|
||||
frame = self.frames[timestamp]
|
||||
del self.frames[timestamp]
|
||||
return frame
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue