better camera name handling

This commit is contained in:
Blake Blackshear 2020-07-26 07:50:42 -05:00
parent d88745af6e
commit 3a1f1c946b

View File

@ -38,8 +38,8 @@ class EventProcessor(threading.Thread):
if f in files_in_use or f in self.cached_clips:
continue
camera = f.split('-')[0]
start_time = datetime.datetime.strptime(f.split('-')[1].split('.')[0], '%Y%m%d%H%M%S')
camera = '-'.join(f.split('-')[:-1])
start_time = datetime.datetime.strptime(f.split('-')[-1].split('.')[0], '%Y%m%d%H%M%S')
ffprobe_cmd = " ".join([
'ffprobe',