Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManuel Kaufmann <humitos@gmail.com>2012-09-04 18:12:31 (GMT)
committer Manuel Kaufmann <humitos@gmail.com>2012-09-04 18:12:31 (GMT)
commitffd5d85a2b6fa6182f788f735faf6eefae3ba657 (patch)
treec63dadefe0644c2620f46e7c8cfdc71152253116
parent0decd37ea10c95e19c3bff4bc34d87ff1b347d5b (diff)
Avoid make video player to crash
-rw-r--r--jukeboxactivity.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/jukeboxactivity.py b/jukeboxactivity.py
index ea1f95a..5ed2ee8 100644
--- a/jukeboxactivity.py
+++ b/jukeboxactivity.py
@@ -703,7 +703,7 @@ class TagReader(gobject.GObject):
#set the uri of the playbin to our audio file
self.pbin.set_property('uri', url)
#pause the playbin, we don't really need to play
- self.pbin.set_state(gst.STATE_PAUSED)
+ # self.pbin.set_state(gst.STATE_PAUSED)
class GstPlayer(gobject.GObject):