X-Git-Url: https://git.ao2.it/experiments/gstreamer.git/blobdiff_plain/fea9aded03f795cfea3e1710a5d1024d41895720..06fbbcb846a06000f216b99d40243f4f973edd4c:/python/gst-trick-mode.py diff --git a/python/gst-trick-mode.py b/python/gst-trick-mode.py index 45e7af2..833892b 100755 --- a/python/gst-trick-mode.py +++ b/python/gst-trick-mode.py @@ -25,12 +25,26 @@ class Player: bus = self._player.get_bus() bus.add_signal_watch() + bus.connect('message::eos', self.on_eos) + bus.connect('message::error', self.on_error) bus.connect('message::state-changed', self.on_state_changed) def run(self): self._player.set_state(Gst.State.PLAYING) - loop = GObject.MainLoop() - loop.run() + self.loop = GObject.MainLoop() + self.loop.run() + + def quit(self): + self._player.set_state(Gst.State.NULL) + self.loop.quit() + + def on_eos(self, bus, msg): + self.quit() + + def on_error(self, bus, msg): + (err, debug) = msg.parse_error() + print "Error: %s" % err, debug + self.quit() def on_state_changed(self, bus, msg): if msg.src != self._player: