From 95f9294fb6f82807ae3d1f3452780ea61bb1f61d Mon Sep 17 00:00:00 2001 From: Erich Blume Date: Sat, 14 Feb 2026 20:25:46 -0800 Subject: [PATCH] Add stationary object timeout to stop alerts on parked cars Cars stop being tracked after ~30s stationary (150 frames at 5fps). Other objects get ~5 minutes (1500 frames) before being dropped. Co-Authored-By: Claude Opus 4.6 --- argocd/manifests/frigate/configmap.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/argocd/manifests/frigate/configmap.yaml b/argocd/manifests/frigate/configmap.yaml index c7b221f..fa20327 100644 --- a/argocd/manifests/frigate/configmap.yaml +++ b/argocd/manifests/frigate/configmap.yaml @@ -30,6 +30,11 @@ data: roles: [detect] detect: enabled: true + stationary: + max_frames: + default: 1500 + objects: + car: 150 objects: track: [person, car, dog, cat, bird]