Log warning for high detect fps (#11435)

* warn in log if detect fps > 10

* change message
This commit is contained in:
Josh Hawkins 2024-05-19 22:36:41 -05:00 committed by GitHub
parent 4c87ef56c7
commit 82d4bf8ab5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1442,6 +1442,12 @@ class FrigateConfig(FrigateBaseModel):
else False
)
# Warn if detect fps > 10
if camera_config.detect.fps > 10:
logger.warning(
f"{camera_config.name} detect fps is set to {camera_config.detect.fps}. This does NOT need to match your camera's frame rate. High values could lead to reduced performance. Recommended value is 5."
)
# Default min_initialized configuration
min_initialized = int(camera_config.detect.fps / 2)
if camera_config.detect.min_initialized is None: