|
|
@ -178,6 +178,14 @@ class TranscodeTools: |
|
|
|
async def processing(self, status: TranscodeStatus, file:File, nvr: NVR, reCreate:bool = False): |
|
|
|
raw_file = os.path.join(self.transcode_directory, status.uuid + ".h264") |
|
|
|
|
|
|
|
mp4_file = os.path.join(self.transcode_directory, status.uuid + ".h264.avi.mp4") |
|
|
|
if os.path.exists(mp4_file) and os.path.getsize(mp4_file) != 0: |
|
|
|
nvr.logout() |
|
|
|
self.statuses[status.b64].outFile = mp4_file |
|
|
|
self.statuses[status.b64].done = True |
|
|
|
self.statuses[status.b64].outSize = os.path.getsize(mp4_file) |
|
|
|
return |
|
|
|
|
|
|
|
if not os.path.exists(raw_file) or os.path.getsize(raw_file) != file.size: |
|
|
|
print("save raw file to", raw_file) |
|
|
|
async with aiofiles.open(raw_file, "wb") as raw: |
|
|
|