From a2b69880fb2a7a2f24b71d650b4bac8a2c2995bf Mon Sep 17 00:00:00 2001 From: Gonzalo Odiard Date: Mon, 04 Jun 2012 20:57:25 +0000 Subject: Set a fake audio sink in the TagReader to avoid conlict using the audio device SL #3628 Signed-off-by: Gonzalo Odiard --- 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 -- cgit v0.9.1