aboutsummaryrefslogtreecommitdiff
path: root/voctocore/lib/videomix.py
diff options
context:
space:
mode:
Diffstat (limited to 'voctocore/lib/videomix.py')
-rw-r--r--voctocore/lib/videomix.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/voctocore/lib/videomix.py b/voctocore/lib/videomix.py
index f45b7a3..7eb823f 100644
--- a/voctocore/lib/videomix.py
+++ b/voctocore/lib/videomix.py
@@ -143,10 +143,16 @@ class VideoMix(object):
gutter = int(width / 100)
self.log.debug('Gutter calculated to %u', gutter)
+ try:
+ y = Config.getint('side-by-side-equal', 'ypos')
+ self.log.debug('Y-Pos configured to %u', y)
+ except:
+ y = (height - targetHeight) / 2
+ self.log.debug('Y-Pos calculated to %u', y)
+
targetWidth = int((width - gutter) / 2)
targetHeight = int(targetWidth / width * height)
- y = (height - targetHeight) / 2
xa = 0
xb = width - targetWidth