Skip to content

Instantly share code, notes, and snippets.

@mrtj
Created November 26, 2021 16:42
Embed
What would you like to do?
def main():
logger = get_logger(level=logging.DEBUG)
try:
logger.info('INITIALIZING APPLICATION')
app = Application(logger)
logger.info('PROCESSING STREAMS')
# video processing loop:
while True:
app.process_streams()
except:
logger.exception('Exception during processing loop.')
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment