WIP: Integrate with RobotStreamer #5
|
@ -1,3 +1,7 @@
|
||||||
|
# Lewis Crawler
|
||||||
|
# 2021 - 2022
|
||||||
|
# Kitsune Scientific
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
import verboselogs
|
import verboselogs
|
||||||
import coloredlogs
|
import coloredlogs
|
||||||
|
|
|
@ -4,6 +4,8 @@
|
||||||
|
|
||||||
import time
|
import time
|
||||||
|
|
||||||
|
import houston.robotstreamer.streamer
|
||||||
|
|
||||||
|
|
||||||
class Houston:
|
class Houston:
|
||||||
def __init__(self, logger):
|
def __init__(self, logger):
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
# Lewis Crawler
|
||||||
|
# 2021 - 2022
|
||||||
|
# Kitsune Scientific
|
|
@ -0,0 +1,13 @@
|
||||||
|
# Lewis Crawler
|
||||||
|
# 2021 - 2022
|
||||||
|
# Kitsune Scientific
|
||||||
|
|
||||||
|
import ffmpeg
|
||||||
|
|
||||||
|
|
||||||
|
class RobotStreamer:
|
||||||
|
def __init__(self, logger):
|
||||||
|
self.log = logger
|
||||||
|
|
||||||
|
def run(self):
|
||||||
|
self.log.debug('Running RobotStreamer')
|
|
@ -1,2 +1,3 @@
|
||||||
coloredlogs
|
coloredlogs
|
||||||
verboselogs
|
verboselogs
|
||||||
|
ffmpeg-python
|
||||||
|
|
Loading…
Reference in New Issue