Add basic streaming support

This commit is contained in:
Thomas Adamcik 2011-04-24 02:55:14 +02:00
parent a81113e1a7
commit 700792f4a0

View File

@ -55,6 +55,10 @@ class GStreamerOutput(ThreadingActor, BaseOutput):
self._add_output(settings.GSTREAMER_AUDIO_SINK)
shoutcast_bin = self._build_shoutcast_description()
if shoutcast_bin:
self._add_output(shoutcast_bin)
# Setup bus and message processor
gst_bus = self.gst_pipeline.get_bus()
gst_bus.add_signal_watch()