def main(): # parse command-line args from lib import args args.parse() from lib.args import Args docolor = (Args.color == 'always') or (Args.color == 'auto' and sys.stderr.isatty()) handler = LogHandler(docolor, Args.timestamp) logging.root.addHandler(handler) if Args.verbose >= 2: level = logging.DEBUG elif Args.verbose == 1: level = logging.INFO else: level = logging.WARNING logging.root.setLevel(level) # make killable by ctrl-c logging.debug('setting SIGINT handler') signal.signal(signal.SIGINT, signal.SIG_DFL) logging.info('Python Version: %s', sys.version_info) logging.info('GStreamer Version: %s', Gst.version()) # init main-class and main-loop logging.debug('initializing DecklinkToTcp') main = DecklinkToTcp() logging.debug('running DecklinkToTcp') main.run()
def main(): # parse command-line args from lib import args args.parse() from lib.args import Args docolor = (Args.color == 'always') \ or (Args.color == 'auto' and sys.stderr.isatty()) from lib.loghandler import LogHandler handler = LogHandler(docolor, Args.timestamp) logging.root.addHandler(handler) if Args.verbose >= 2: level = logging.DEBUG elif Args.verbose == 1: level = logging.INFO else: level = logging.WARNING logging.root.setLevel(level) # make killable by ctrl-c logging.debug('setting SIGINT handler') signal.signal(signal.SIGINT, signal.SIG_DFL) logging.info('Python Version: %s', sys.version_info) logging.info('GStreamer Version: %s', Gst.version()) logging.debug('loading Config') from lib import config config.load() from lib.config import Config # establish a synchronus connection to server import lib.connection as Connection Connection.establish( Args.host if Args.host else Config.get('server', 'host')) # fetch config from server Config.fetchServerConfig() # Warn when connecting to a non-local core without preview-encoders enabled # The list-comparison is not complete # (one could use a local hostname or the local system ip), # but it's only here to warn that one might be making a mistake use_previews = Config.getboolean('previews', 'enabled') \ and Config.getboolean('previews', 'use') looks_like_localhost = Config.get( 'server', 'host') in ['::1', '127.0.0.1', 'localhost'] if not use_previews and not looks_like_localhost: logging.warning( 'Connecting to `%s` (which looks like a remote host) ' 'might not work without enabeling the preview encoders ' '(set `[previews] enabled=true` on the core) or it might saturate ' 'your ethernet link between the two machines.', Config.get('server', 'host')) import lib.connection as Connection import lib.clock as ClockManager # obtain network-clock ClockManager.obtainClock(Connection.ip) # switch connection to nonblocking, event-driven mode Connection.enterNonblockingMode() # init main-class and main-loop # (this binds all event-hander on the Connection) logging.debug('initializing Voctogui') voctogui = Voctogui() # start the Mainloop and show the Window logging.debug('running Voctogui') voctogui.run()
def main(): # parse command-line args from lib import args args.parse() from lib.args import Args docolor = (Args.color == 'always') \ or (Args.color == 'auto' and sys.stderr.isatty()) from lib.loghandler import LogHandler handler = LogHandler(docolor, Args.timestamp) logging.root.addHandler(handler) if Args.verbose >= 2: level = logging.DEBUG elif Args.verbose == 1: level = logging.INFO else: level = logging.WARNING logging.root.setLevel(level) # make killable by ctrl-c logging.debug('setting SIGINT handler') signal.signal(signal.SIGINT, signal.SIG_DFL) logging.info('Python Version: %s', sys.version_info) logging.info('GStreamer Version: %s', Gst.version()) logging.debug('loading Config') from lib import config config.load() from lib.config import Config # establish a synchronus connection to server import lib.connection as Connection Connection.establish( Args.host if Args.host else Config.get('server', 'host') ) # fetch config from server Config.fetchServerConfig() # Warn when connecting to a non-local core without preview-encoders enabled # The list-comparison is not complete # (one could use a local hostname or the local system ip), # but it's only here to warn that one might be making a mistake use_previews = Config.getboolean('previews', 'enabled') \ and Config.getboolean('previews', 'use') looks_like_localhost = Config.get('server', 'host') in ['::1', '127.0.0.1', 'localhost'] if not use_previews and not looks_like_localhost: logging.warning( 'Connecting to `%s` (which looks like a remote host) ' 'might not work without enabeling the preview encoders ' '(set `[previews] enabled=true` on the core) or it might saturate ' 'your ethernet link between the two machines.', Config.get('server', 'host') ) import lib.connection as Connection import lib.clock as ClockManager # obtain network-clock ClockManager.obtainClock(Connection.ip) # switch connection to nonblocking, event-driven mode Connection.enterNonblockingMode() # init main-class and main-loop # (this binds all event-hander on the Connection) logging.debug('initializing Voctogui') voctogui = Voctogui() # start the Mainloop and show the Window logging.debug('running Voctogui') voctogui.run()