mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
stop writing json file to disk
This commit is contained in:
parent
aff87d4372
commit
3941ce4ad1
@ -140,18 +140,6 @@ class EventProcessor(threading.Thread):
|
||||
if p.returncode != 0:
|
||||
logger.error(p.stderr)
|
||||
return
|
||||
|
||||
with open(f"{os.path.join(self.clips_dir, clip_name)}.json", 'w') as outfile:
|
||||
json.dump({
|
||||
'id': event_data['id'],
|
||||
'label': event_data['label'],
|
||||
'camera': camera,
|
||||
'start_time': event_data['start_time'],
|
||||
'end_time': event_data['end_time'],
|
||||
'top_score': event_data['top_score'],
|
||||
'false_positive': event_data['false_positive'],
|
||||
'zones': list(event_data['entered_zones'])
|
||||
}, outfile)
|
||||
|
||||
def run(self):
|
||||
while True:
|
||||
|
Loading…
Reference in New Issue
Block a user