|
|
@ -1,7 +1,5 @@ |
|
|
|
from genericpath import exists |
|
|
|
import os, sys |
|
|
|
from json import loads |
|
|
|
from turtle import width |
|
|
|
import uuid |
|
|
|
from asyncio_dvrip import DVRIPCam |
|
|
|
import asyncio |
|
|
@ -60,6 +58,7 @@ class TranscodeStatus: |
|
|
|
self.outFile = None |
|
|
|
self.done = False |
|
|
|
self.outSize = 0 |
|
|
|
self.error = "" |
|
|
|
|
|
|
|
@property |
|
|
|
def outName(self): |
|
|
@ -139,8 +138,11 @@ class TranscodeTools: |
|
|
|
|
|
|
|
def check_converter(self): |
|
|
|
from subprocess import call, DEVNULL |
|
|
|
cmd = f"{self.python_win32} {self.converter_script} --help" |
|
|
|
if platform.system() == "Linux": |
|
|
|
cmd = "wine " + cmd |
|
|
|
try: |
|
|
|
return not call(f"{self.python_win32} {self.converter_script} --help".split(), stdin=DEVNULL if self.hide_checks else None, stdout=DEVNULL if self.hide_checks else None, stderr=DEVNULL if self.hide_checks else None) |
|
|
|
return not call(cmd.split(), stdin=DEVNULL if self.hide_checks else None, stdout=DEVNULL if self.hide_checks else None, stderr=DEVNULL if self.hide_checks else None) |
|
|
|
except: |
|
|
|
return False |
|
|
|
|
|
|
@ -152,6 +154,7 @@ class TranscodeTools: |
|
|
|
elif platform.system() == "Linux": |
|
|
|
exec_cmd = "wine" |
|
|
|
exec_string.append(self.python_win32) |
|
|
|
else: |
|
|
|
raise Exception("Unknown platform to transcode") |
|
|
|
|
|
|
|
exec_string.append(self.converter_script) |
|
|
@ -184,6 +187,12 @@ class TranscodeTools: |
|
|
|
def deleteFile(self, source_file): |
|
|
|
os.remove(source_file) |
|
|
|
|
|
|
|
async def processing_safe(self, status: TranscodeStatus, file:File, nvr: NVR, reCreate:bool = False): |
|
|
|
try: |
|
|
|
await self.processing(status, file, nvr, reCreate) |
|
|
|
except Exception as e: |
|
|
|
self.statuses[status.b64].error = str(e) |
|
|
|
|
|
|
|
async def processing(self, status: TranscodeStatus, file:File, nvr: NVR, reCreate:bool = False): |
|
|
|
raw_file = os.path.join(self.transcode_directory, status.uuid + ".h264") |
|
|
|
|
|
|
@ -234,7 +243,7 @@ class TranscodeTools: |
|
|
|
|
|
|
|
class Config: |
|
|
|
def __init__(self, config_name = "config.json", args = None) -> None: |
|
|
|
raw = load_config(config_name) |
|
|
|
raw = load_config(config_name) if args == None or not args.err_check else {} |
|
|
|
self.listen_address = raw.get("backend", {}).get("address", "0.0.0.0") |
|
|
|
self.listen_port = int(raw.get("backend", {}).get("port", "8080")) |
|
|
|
self.recorders = [] |
|
|
@ -267,9 +276,13 @@ if __name__ == "__main__": |
|
|
|
import argparse |
|
|
|
parser = argparse.ArgumentParser() |
|
|
|
parser.add_argument("--no-hide-check", action="store_true") |
|
|
|
parser.add_argument("--err-check", action="store_true") |
|
|
|
parser.add_argument("--test-h264toavi", type=str) |
|
|
|
args = parser.parse_args() |
|
|
|
config = Config(args = args) |
|
|
|
if args.err_check: |
|
|
|
sys.exit(0 if config.transcode_tools.enabled else 1) |
|
|
|
|
|
|
|
if args.test_h264toavi: |
|
|
|
config.transcode_tools.h264toavi_test(args.test_h264toavi) |
|
|
|
sys.exit(0) |
|
|
|