|
|
@ -20,8 +20,8 @@ H265X = "h265x" |
|
|
|
|
|
|
|
class File: |
|
|
|
def __init__(self, data, channel = 0, stream = 0) -> None: |
|
|
|
self.begin = datetime.strptime(data.get("BeginTime", data.get("begin")), NVR_DATETIME_FORMAT) |
|
|
|
self.end = datetime.strptime(data.get("EndTime", data.get("end")), NVR_DATETIME_FORMAT) |
|
|
|
self.begin:datetime = datetime.strptime(data.get("BeginTime", data.get("begin")), NVR_DATETIME_FORMAT) |
|
|
|
self.end:datetime = datetime.strptime(data.get("EndTime", data.get("end")), NVR_DATETIME_FORMAT) |
|
|
|
self.DiskNo = data.get("DiskNo") |
|
|
|
self.SerialNo = data.get("SerialNo") |
|
|
|
self.size = int(data.get("FileLength"), 0) * 1024 if "FileLength" in data else data.get("size", 0) |
|
|
@ -47,16 +47,39 @@ class File: |
|
|
|
@property |
|
|
|
def json(self): |
|
|
|
b64 = self.to_b64.replace("==", "") |
|
|
|
return {"filename": self.filename_cleared, "type": self.type, "size": self.size, "b64": b64, "converted":File.converted(b64)} |
|
|
|
return {"filename": self.filename_cleared, "type": self.type, "size": self.size, "b64": b64, "converted":self.converted} |
|
|
|
|
|
|
|
@staticmethod |
|
|
|
def from_b64(b64): |
|
|
|
data = json.loads(base64.b64decode(b64).decode('utf-8')) |
|
|
|
return File(data, data.get("channel"), data.get("stream")) |
|
|
|
|
|
|
|
@staticmethod |
|
|
|
def converted(b64): |
|
|
|
return os.path.exists(os.path.join(os.path.join(app_dir(), "transcode"), str(uuid_from_string(b64)) + ".h264.avi.mp4")) |
|
|
|
@property |
|
|
|
def converted(self): |
|
|
|
return os.path.exists(self.localPath(os.path.join(os.path.join(app_dir(), "transcode"))) + ".avi.mp4") |
|
|
|
|
|
|
|
def genPath(self, root, subPath, ext): |
|
|
|
if not os.path.exists(os.path.join(root, subPath)): |
|
|
|
os.mkdir(os.path.join(root, subPath)) |
|
|
|
|
|
|
|
if not os.path.exists(os.path.join(root, subPath, str(self.begin.year))): |
|
|
|
os.mkdir(os.path.join(root, subPath, str(self.begin.year))) |
|
|
|
|
|
|
|
if not os.path.exists(os.path.join(root, subPath, str(self.begin.year), str(self.begin.month))): |
|
|
|
os.mkdir(os.path.join(root, subPath, str(self.begin.year), str(self.begin.month))) |
|
|
|
|
|
|
|
if not os.path.exists(os.path.join(root, subPath, str(self.begin.year), str(self.begin.month), str(self.begin.day))): |
|
|
|
os.mkdir(os.path.join(root, subPath, str(self.begin.year), str(self.begin.month), str(self.begin.day))) |
|
|
|
|
|
|
|
if not os.path.exists(os.path.join(root, subPath, str(self.begin.year), str(self.begin.month), str(self.begin.day), str(self.begin.hour))): |
|
|
|
os.mkdir(os.path.join(root, subPath, str(self.begin.year), str(self.begin.month), str(self.begin.day), str(self.begin.hour))) |
|
|
|
|
|
|
|
return os.path.join(root, subPath, str(self.begin.year), str(self.begin.month), str(self.begin.day), str(self.begin.hour), f"{self.filename_cleared.replace(' ', '_').replace('(', '_').replace(')', '_').replace('-', '').replace(':', '')}.{ext}") |
|
|
|
def localPath(self, root, subPath = "video"): |
|
|
|
return self.genPath(root, subPath, self.type) |
|
|
|
|
|
|
|
def previewPath(self, root, subPath = "preview"): |
|
|
|
return self.genPath(root, subPath, "jpg") |
|
|
|
|
|
|
|
async def generate_first_bytes(self, client:DVRIPCam, version = 0): |
|
|
|
client.logger.debug("init request") |
|
|
|