aboutsummaryrefslogtreecommitdiff
path: root/voctocore/videomix.py
diff options
context:
space:
mode:
authorMaZderMind <github@mazdermind.de>2014-08-01 19:53:52 +0200
committerMaZderMind <github@mazdermind.de>2014-08-01 19:53:52 +0200
commit440eb104cb53253646d2f55defc0120fb8c34687 (patch)
tree314b2be912e0ddcc396970c9d2b7ef1563d3cc94 /voctocore/videomix.py
parent17fafde5fe081b30ba5b32e91231107a95441049 (diff)
switch preview border when switching videos
Diffstat (limited to 'voctocore/videomix.py')
-rw-r--r--voctocore/videomix.py31
1 files changed, 28 insertions, 3 deletions
diff --git a/voctocore/videomix.py b/voctocore/videomix.py
index 103c8e7..66068fb 100644
--- a/voctocore/videomix.py
+++ b/voctocore/videomix.py
@@ -4,11 +4,13 @@ from gi.repository import GLib, Gst
from controlserver import controlServerEntrypoint
class Videomix:
-"""mixing, streaming and encoding pipeline constuction and control"""
+ """mixing, streaming and encoding pipeline constuction and control"""
# size of the monitor-streams
# should be anamorphic PAL, beacuse we encode it to dv and send it to the mixer-gui
monitorSize = (1024, 576)
+ previewbins = []
+
def __init__(self):
"""initialize video mixing, streaming and encoding pipeline"""
# initialize an empty pipeline
@@ -38,6 +40,11 @@ class Videomix:
# add all video-sources to the quadmix-monitor-screen
self.addVideosToQuadmix(quadmixSources, self.pipeline.get_by_name('quadmix'))
+ # initialize to known defaults
+ # TODO: make configurable
+ self.switchVideo(0)
+ self.switchAudio(0)
+
Gst.debug_bin_to_dot_file(self.pipeline, Gst.DebugGraphDetails.ALL, 'test')
self.pipeline.set_state(Gst.State.PLAYING)
@@ -101,8 +108,9 @@ class Videomix:
""", False)
# name the bin and add it
- self.pipeline.add(previewbin)
previewbin.set_name('previewbin-{}'.format(idx))
+ self.pipeline.add(previewbin)
+ self.previewbins.append(previewbin)
# set the overlay-text
previewbin.get_by_name('text').set_property('text', str(idx))
@@ -226,6 +234,15 @@ class Videomix:
yield value
+ def previewBorderHelper(self, previewbin, enabled, color = 'red'):
+ crop = previewbin.get_by_name('crop')
+ add = previewbin.get_by_name('add')
+ add.set_property('fill', color)
+ for side in ('top', 'left', 'right', 'bottom'):
+ crop.set_property(side, 5 if enabled else 0)
+ add.set_property(side, -5 if enabled else 0)
+
+
### below are access-methods for the ControlServer
@controlServerEntrypoint
@@ -259,12 +276,20 @@ class Videomix:
"""switch audio to the selected video"""
livevideo = self.pipeline.get_by_name('livevideo')
pad = livevideo.get_static_pad('sink_{}'.format(videosource))
- if pad is None:
+ previewbin = self.pipeline.get_by_name('previewbin-{}'.format(videosource))
+
+ if pad is None or previewbin is None:
return 'unknown video-source: {}'.format(videosource)
+ self.previewBorderHelper(previewbin, True, 'green')
+ for iterbin in self.previewbins:
+ if previewbin != iterbin:
+ self.previewBorderHelper(iterbin, False)
+
pad.set_property('alpha', 1)
for iterpad in self.iteratorHelper(livevideo.iterate_sink_pads()):
if pad != iterpad:
+ #self.previewBorderHelper(iterpad, 0)
iterpad.set_property('alpha', 0)