Skip to content

Commit 9d62eae

Browse files
committed
some file sizes are 0 (recording in progress?)
1 parent e0125d1 commit 9d62eae

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

examples/video_review_gui.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def parse_filename(file_name):
5656
# https://github.com/sven337/ReolinkLinux/wiki/Figuring-out-the-file-names#file-name-structure
5757
pattern = r'.*?Mp4Record_(\d{4}-\d{2}-\d{2})_Rec[MS](\d)(\d)_(DST)?(\d{8})_(\d{6})_(\d{6})'
5858
v3_suffix = r'.*_(\w{4,8})_(\w{4,8})\.mp4'
59-
v9_suffix = r'.*_(\d)_(\w{7})(\w{7})_(\w{4,8})\.mp4'
59+
v9_suffix = r'.*_(\d)_(\w{7})(\w{7})_(\w{1,8})\.mp4'
6060
match = re.match(pattern, file_name)
6161

6262
out = {}
@@ -444,6 +444,7 @@ def on_download_complete(self, video_path, success):
444444
item = self.find_item_by_path(os.path.basename(video_path))
445445
if not item:
446446
print(f"on_download_complete {video_path} did not find item?!")
447+
return
447448
item.setForeground(1, QBrush(QColor(0, 0, 0))) # Black color for normal text
448449
font = item.font(1)
449450
font.setItalic(False)

0 commit comments

Comments
 (0)