Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGonzalo Odiard <godiard@gmail.com>2012-06-04 20:57:25 (GMT)
committer Gonzalo Odiard <godiard@gmail.com>2012-06-05 12:47:51 (GMT)
commita2b69880fb2a7a2f24b71d650b4bac8a2c2995bf (patch)
tree4bbc2de84dd24927fdd53c2a1daad8b33d1e9ab2
parentb911c60b2e93cdac46bfd30813119a7a4e6e18c2 (diff)
Set a fake audio sink in the TagReader to avoid conlict using the audio device SL #3628
Signed-off-by: Gonzalo Odiard <gonzalo@laptop.org>
-rw-r--r--jukeboxactivity.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/jukeboxactivity.py b/jukeboxactivity.py
index cc277b7..9d234b1 100644
--- a/jukeboxactivity.py
+++ b/jukeboxactivity.py
@@ -596,6 +596,7 @@ class TagReader(gobject.GObject):
self.pbin = gst.element_factory_make('playbin', 'player')
fakesink = gst.element_factory_make('fakesink', 'fakesink')
self.pbin.set_property('video-sink', fakesink)
+ self.pbin.set_property('audio-sink', fakesink)
#we need to receive signals from the playbin's bus
self.bus = self.pbin.get_bus()
#make sure we are watching the signals on the bus