From 8e2359d8ed6b17fc6cad99d617c889c754eb44c1 Mon Sep 17 00:00:00 2001 From: MaZderMind Date: Tue, 16 Jun 2015 15:31:16 +0200 Subject: Fix Logging around the Videomixer creation --- voctocore/lib/pipeline.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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) -- cgit v1.2.3