mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-03-04 00:17:22 +01:00
Don't consider segments containing unprocessed frames in segment count (#14120)
This commit is contained in:
parent
0aad7db2d2
commit
75d531285a
@ -129,10 +129,23 @@ class RecordingMaintainer(threading.Thread):
|
|||||||
grouped_recordings[camera], key=lambda s: s["start_time"]
|
grouped_recordings[camera], key=lambda s: s["start_time"]
|
||||||
)
|
)
|
||||||
|
|
||||||
segment_count = len(grouped_recordings[camera])
|
camera_info = self.object_recordings_info[camera]
|
||||||
if segment_count > keep_count:
|
most_recently_processed_frame_time = (
|
||||||
|
camera_info[-1][0] if len(camera_info) > 0 else 0
|
||||||
|
)
|
||||||
|
|
||||||
|
processed_segment_count = len(
|
||||||
|
list(
|
||||||
|
filter(
|
||||||
|
lambda r: r["start_time"].timestamp()
|
||||||
|
< most_recently_processed_frame_time,
|
||||||
|
grouped_recordings[camera],
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
if processed_segment_count > keep_count:
|
||||||
logger.warning(
|
logger.warning(
|
||||||
f"Unable to keep up with recording segments in cache for {camera}. Keeping the {keep_count} most recent segments out of {segment_count} and discarding the rest..."
|
f"Unable to keep up with recording segments in cache for {camera}. Keeping the {keep_count} most recent segments out of {processed_segment_count} and discarding the rest..."
|
||||||
)
|
)
|
||||||
to_remove = grouped_recordings[camera][:-keep_count]
|
to_remove = grouped_recordings[camera][:-keep_count]
|
||||||
for rec in to_remove:
|
for rec in to_remove:
|
||||||
|
Loading…
Reference in New Issue
Block a user