diff options
author | MaZderMind <github@mazdermind.de> | 2015-06-16 15:31:16 +0200 |
---|---|---|
committer | MaZderMind <github@mazdermind.de> | 2015-06-16 15:31:16 +0200 |
commit | 8e2359d8ed6b17fc6cad99d617c889c754eb44c1 (patch) | |
tree | d944aef63a0253567841b7ae8ff48c880835e829 | |
parent | b3fc5429e80b4913c0bc2c29cc53be8c67569600 (diff) |
Fix Logging around the Videomixer creation
-rw-r--r-- | voctocore/lib/pipeline.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/voctocore/lib/pipeline.py b/voctocore/lib/pipeline.py index 18b54dd..1004b0e 100644 --- a/voctocore/lib/pipeline.py +++ b/voctocore/lib/pipeline.py @@ -55,12 +55,14 @@ class Pipeline(object): self.log.info('Creating Videmixer') self.vmix = VideoMix() - self.log.info('Creating Videmixer') + self.log.info('Creating Audiomixer') self.amix = AudioMix() port = 16000 + self.log.info('Videomixer Background-Source-Port at tcp-port %u', port) self.bgsrc = VSource('background', port) + port = 11000 self.log.info('Creating Mixer-Output at tcp-port %u', port) self.mixout = AVRawOutput('mix_out', port) |