mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
Make saving preview frames on restart more reliable (#10630)
* increase priority of saving preview frames * Improve checking for ended recording
This commit is contained in:
parent
3a9607e59b
commit
c2a32bd6c1
@ -130,6 +130,8 @@ def output_frames(
|
||||
|
||||
previous_frames[camera] = frame_time
|
||||
|
||||
move_preview_frames("clips")
|
||||
|
||||
while True:
|
||||
(topic, data) = detection_subscriber.get_data(timeout=0)
|
||||
|
||||
@ -156,8 +158,6 @@ def output_frames(
|
||||
for preview in preview_recorders.values():
|
||||
preview.stop()
|
||||
|
||||
move_preview_frames("clips")
|
||||
|
||||
if birdseye is not None:
|
||||
birdseye.stop()
|
||||
|
||||
|
@ -7,6 +7,7 @@ import os
|
||||
import random
|
||||
import string
|
||||
import threading
|
||||
import time
|
||||
from collections import defaultdict
|
||||
from multiprocessing.synchronize import Event as MpEvent
|
||||
from pathlib import Path
|
||||
@ -440,7 +441,12 @@ class RecordingMaintainer(threading.Thread):
|
||||
def run(self) -> None:
|
||||
# Check for new files every 5 seconds
|
||||
wait_time = 0.0
|
||||
while not self.stop_event.wait(wait_time):
|
||||
while not self.stop_event.is_set():
|
||||
time.sleep(wait_time)
|
||||
|
||||
if self.stop_event.is_set():
|
||||
break
|
||||
|
||||
run_start = datetime.datetime.now().timestamp()
|
||||
|
||||
# check if there is an updated config
|
||||
|
Loading…
Reference in New Issue
Block a user