|
|
@ -10,6 +10,9 @@ import aiofiles |
|
|
|
|
|
|
|
from global_funcs import * |
|
|
|
|
|
|
|
class NeedNVR(Exception): |
|
|
|
pass |
|
|
|
|
|
|
|
class Recorder: |
|
|
|
loop = asyncio.get_event_loop() |
|
|
|
def __init__(self, address, port, username, password, name = "", index = 0): |
|
|
@ -140,7 +143,6 @@ class Go2Rtc: |
|
|
|
await cfg.write(lines) |
|
|
|
|
|
|
|
await asyncio.create_subprocess_exec(self.exec, *["-c", cfg_file]) |
|
|
|
|
|
|
|
|
|
|
|
class TranscodeTools: |
|
|
|
statuses:dict[str, TranscodeStatus] = {} |
|
|
@ -251,17 +253,48 @@ class TranscodeTools: |
|
|
|
else: |
|
|
|
raise Exception("MP4 not be created") |
|
|
|
|
|
|
|
async def anytoimage(self, source_file, out_file, delete_source_file = False): |
|
|
|
exec_string = ["-y", "-i", source_file, "-ss", "1", "-vframes", "1", out_file] |
|
|
|
self.logger.debug(f"execute {exec_string}") |
|
|
|
proc = await asyncio.create_subprocess_exec("ffmpeg", *exec_string) |
|
|
|
await proc.communicate() |
|
|
|
|
|
|
|
if delete_source_file: |
|
|
|
os.remove(source_file) |
|
|
|
if os.path.exists(out_file): |
|
|
|
return out_file |
|
|
|
else: |
|
|
|
raise Exception(f"{out_file} not be created") |
|
|
|
|
|
|
|
def deleteFile(self, source_file): |
|
|
|
os.remove(source_file) |
|
|
|
|
|
|
|
async def processing_preview(self, file:File, nvr: NVR, ext = "webp"): |
|
|
|
raw_file = file.previewPath(self.transcode_directory) |
|
|
|
preview_file = f"{raw_file}.{ext}" |
|
|
|
if os.path.exists(preview_file) and os.path.getsize(preview_file) != 0: |
|
|
|
return preview_file |
|
|
|
|
|
|
|
if nvr is None: |
|
|
|
raise NeedNVR |
|
|
|
|
|
|
|
if not os.path.exists(raw_file) or os.path.getsize(raw_file) != 0: |
|
|
|
async with aiofiles.open(raw_file, "wb") as raw: |
|
|
|
async for chunk in nvr.stream_file(file, 1024 * 512): |
|
|
|
await raw.write(chunk) |
|
|
|
|
|
|
|
nvr.logout() |
|
|
|
|
|
|
|
return await self.anytoimage(raw_file, preview_file, True) |
|
|
|
|
|
|
|
async def processing_safe(self, status: TranscodeStatus, file:File, nvr: NVR, reCreate:bool = False): |
|
|
|
try: |
|
|
|
await self.processing(status, file, nvr, reCreate) |
|
|
|
await self.processing_mp4(status, file, nvr, reCreate) |
|
|
|
except Exception as e: |
|
|
|
traceback.print_exc() |
|
|
|
self.statuses[status.b64].error = str(e) |
|
|
|
|
|
|
|
async def processing(self, status: TranscodeStatus, file:File, nvr: NVR, reCreate:bool = False): |
|
|
|
async def processing_mp4(self, status: TranscodeStatus, file:File, nvr: NVR, reCreate:bool = False): |
|
|
|
raw_file = file.localPath(self.transcode_directory) |
|
|
|
self.logger.info(f"save path: {raw_file}") |
|
|
|
|
|
|
|