diff options
author | MaZderMind <github@mazdermind.de> | 2015-06-16 15:24:24 +0200 |
---|---|---|
committer | MaZderMind <github@mazdermind.de> | 2015-06-16 15:24:24 +0200 |
commit | 59e394e00d6c29bf71c38996d09be1cc5647bfb7 (patch) | |
tree | ac3bbbd9543de7653805bb41ac6609d6ea81bacd /voctocore/lib/backgroundsource.py | |
parent | b2c5c5cc6eb904db8e6c05d2281541b16d4a2ce8 (diff) |
Implement ASource and VSource as generic sources
they are needed for the StreamBlanker-Feature as well
Diffstat (limited to 'voctocore/lib/backgroundsource.py')
-rw-r--r-- | voctocore/lib/backgroundsource.py | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/voctocore/lib/backgroundsource.py b/voctocore/lib/backgroundsource.py deleted file mode 100644 index 1f3da54..0000000 --- a/voctocore/lib/backgroundsource.py +++ /dev/null @@ -1,51 +0,0 @@ -#!/usr/bin/python3 -import logging -from gi.repository import Gst - -from lib.config import Config -from lib.tcpsingleconnection import TCPSingleConnection - -class BackgroundSource(TCPSingleConnection): - def __init__(self, port): - self.log = logging.getLogger('BackgroundSource') - super().__init__(port) - - def on_accepted(self, conn, addr): - pipeline = """ - fdsrc fd={fd} ! - matroskademux ! - {vcaps} ! - intervideosink channel=mixer_background - """.format( - fd=conn.fileno(), - vcaps=Config.get('mix', 'videocaps') - ) - - self.log.debug('Launching Source-Pipeline:\n%s', pipeline) - self.receiverPipeline = Gst.parse_launch(pipeline) - - self.log.debug('Binding End-of-Stream-Signal on Source-Pipeline') - self.receiverPipeline.bus.add_signal_watch() - self.receiverPipeline.bus.connect("message::eos", self.on_eos) - self.receiverPipeline.bus.connect("message::error", self.on_error) - - self.receiverPipeline.set_state(Gst.State.PLAYING) - - - def on_eos(self, bus, message): - self.log.debug('Received End-of-Stream-Signal on Source-Pipeline') - if self.currentConnection is not None: - self.disconnect() - - def on_error(self, bus, message): - self.log.debug('Received Error-Signal on Source-Pipeline') - (error, debug) = message.parse_error() - self.log.debug('Error-Details: #%u: %s', error.code, debug) - - if self.currentConnection is not None: - self.disconnect() - - def disconnect(self): - self.receiverPipeline.set_state(Gst.State.NULL) - self.receiverPipeline = None - self.close_connection() |