drop mjpeg streamer

This commit is contained in:
Siwat Sirichai 2022-04-07 22:18:32 +07:00
parent df5d019877
commit 998f9a6ad8
1 changed files with 0 additions and 26 deletions

View File

@ -5,37 +5,11 @@ import time
import os import os
import pwd import pwd
MJPG = [
"/usr/local/bin/mjpg_streamer",
"-i",
"%(input)s",
"-o",
"output_http.so -p %(port)s -w /usr/local/share/mjpg-streamer/www/",
]
MJPG_INPUT_DEFAULT = "input_uvc.so -r HD"
OCTOPRINT = ["/opt/octoprint/venv/bin/octoprint", "serve"] OCTOPRINT = ["/opt/octoprint/venv/bin/octoprint", "serve"]
def main(): def main():
mjpg_processes = []
mjpg_ports = [5000] # Reserve the OctoPrint port
for k, v in os.environ.iteritems():
if k.startswith("MJPG") and not k.startswith("MJPG_"):
v = v.strip()
port_env = "MJPG_PORT" + k[4:]
port = int(os.environ.get(port_env, 8080))
if port in mjpg_ports:
raise ValueError("Port %s from key %s already in use" % (port, port_env))
if not v:
v = MJPG_INPUT_DEFAULT
subs = {'input': v, 'port': port}
cmd = []
for part in MJPG:
cmd.append(part % subs)
print("Starting: %s" % (cmd,))
mjpg_processes.append(subprocess.Popen(cmd))
# Start klipper # Start klipper
klipper = subprocess.Popen(['sudo', '-u', 'octoprint', '/runklipper.py']) klipper = subprocess.Popen(['sudo', '-u', 'octoprint', '/runklipper.py'])