From 0b222cd7f66375356f3826a5c0f77f15a3793f0d Mon Sep 17 00:00:00 2001 From: MaZderMind Date: Thu, 14 May 2015 15:44:34 +0200 Subject: Implement an Audio-Mixer --- voctocore/lib/videomix.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'voctocore/lib/videomix.py') diff --git a/voctocore/lib/videomix.py b/voctocore/lib/videomix.py index dbebede..77bea42 100644 --- a/voctocore/lib/videomix.py +++ b/voctocore/lib/videomix.py @@ -147,7 +147,7 @@ class VideoMix(object): capsfilter = self.mixingPipeline.get_by_name('caps_%u' % idx) capsfilter.set_property('caps', caps) - def setVideoA(self, source): + def setVideoSourceA(self, source): # swap if required if self.sourceB == source: self.sourceB = self.sourceA @@ -155,7 +155,7 @@ class VideoMix(object): self.sourceA = source self.updateMixerState() - def setVideoB(self, source): + def setVideoSourceB(self, source): # swap if required if self.sourceA == source: self.sourceA = self.sourceB -- cgit v1.2.3