|
|
@ -294,12 +294,18 @@ class TranscodeTools: |
|
|
|
raise NeedNVR |
|
|
|
|
|
|
|
if not os.path.exists(raw_file) or os.path.getsize(raw_file) == 0: |
|
|
|
self.logger.info(f"download new preview {preview_file}") |
|
|
|
async with aiofiles.open(raw_file, "wb") as raw: |
|
|
|
async for chunk in nvr.stream_file(file, preview_pre_bytes): |
|
|
|
await raw.write(chunk) |
|
|
|
try: |
|
|
|
async with asyncio.timeout(10): |
|
|
|
self.logger.info(f"download new preview {preview_file}") |
|
|
|
async with aiofiles.open(raw_file, "wb") as raw: |
|
|
|
async for chunk in nvr.stream_file(file, preview_pre_bytes): |
|
|
|
await raw.write(chunk) |
|
|
|
except asyncio.TimeoutError as te: |
|
|
|
self.logger.info(f"Cancel download file: {te}") |
|
|
|
os.remove(raw_file) |
|
|
|
finally: |
|
|
|
nvr.logout() |
|
|
|
|
|
|
|
nvr.logout() |
|
|
|
raw_file_avi = await self.h264toavi(raw_file) |
|
|
|
if self.delete_temporary_files: |
|
|
|
self.deleteFile(raw_file) |
|
|
|