projects
/
vidi-player.git
/ blobdiff
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Use webm for the videofont, it has better support than shroedinger
[vidi-player.git]
/
vidi
/
Player.py
diff --git
a/vidi/Player.py
b/vidi/Player.py
index
bd826bc
..
cf30f9f
100755
(executable)
--- a/
vidi/Player.py
+++ b/
vidi/Player.py
@@
-41,21
+41,14
@@
class Player(object):
pipeline = Gst.parse_launch(pipeline_string)
return Player(pipeline)
pipeline = Gst.parse_launch(pipeline_string)
return Player(pipeline)
- def quit(self):
- self.mainloop.quit()
- self.pipeline.set_state(Gst.State.NULL)
-
def bus_message_cb(self, unused_bus, message):
if message.type == Gst.MessageType.EOS:
def bus_message_cb(self, unused_bus, message):
if message.type == Gst.MessageType.EOS:
- self.
quit
()
+ self.
stop
()
def play(self):
self.pipeline.set_state(Gst.State.PLAYING)
def play(self):
self.pipeline.set_state(Gst.State.PLAYING)
+ self.mainloop.run()
- try:
- self.mainloop.run()
- except KeyboardInterrupt:
- self.quit()
- return 1
-
- return 0
+ def stop(self):
+ self.mainloop.quit()
+ self.pipeline.set_state(Gst.State.NULL)