From e407ba47c200424a6983a4db521cdf504f1cfd78 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Fri, 15 Nov 2024 13:25:57 -0700 Subject: [PATCH] Increase max shm frames (#15009) --- frigate/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/app.py b/frigate/app.py index 7543aef30..3477a7e84 100644 --- a/frigate/app.py +++ b/frigate/app.py @@ -516,7 +516,7 @@ class FrigateApp: if cam_total_frame_size == 0.0: return 0 - shm_frame_count = min(50, int(available_shm / (cam_total_frame_size))) + shm_frame_count = min(200, int(available_shm / (cam_total_frame_size))) logger.debug( f"Calculated total camera size {available_shm} / {cam_total_frame_size} :: {shm_frame_count} frames for each camera in SHM"