diff options
author | MaZderMind <github@mazdermind.de> | 2015-05-23 14:52:23 +0200 |
---|---|---|
committer | MaZderMind <github@mazdermind.de> | 2015-05-23 14:52:23 +0200 |
commit | 4559b8f400da068623d1fa08a4a126fa8ded2117 (patch) | |
tree | 8fdb4f9d36c78835c8c72d5719a3d8978dbf3d3d /voctocore/lib/pipeline.py | |
parent | 84d4a5c1a43dd663392b899e986f162c7fbeb6b6 (diff) |
mixer background
Diffstat (limited to 'voctocore/lib/pipeline.py')
-rw-r--r-- | voctocore/lib/pipeline.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/voctocore/lib/pipeline.py b/voctocore/lib/pipeline.py index 9addca0..a45ea53 100644 --- a/voctocore/lib/pipeline.py +++ b/voctocore/lib/pipeline.py @@ -7,6 +7,7 @@ from lib.config import Config from lib.avsource import AVSource from lib.avrawoutput import AVRawOutput from lib.avpreviewoutput import AVPreviewOutput +from lib.backgroundsource import BackgroundSource from lib.videomix import VideoMix from lib.audiomix import AudioMix @@ -56,6 +57,9 @@ class Pipeline(object): self.log.info('Creating Videmixer') self.amix = AudioMix() + port = 16000 + self.bgsrc = BackgroundSource(port) + port = 11000 self.log.info('Creating Mixer-Output at tcp-port %u', port) self.mixout = AVRawOutput('mix_out', port) |