Il faudrait que tu partage ton fichier de paramétrage, mais ca peut venir de cette section de paramétrage :
dans Records >> Events >> Retain
retain:
# Required: Default retention days (default: shown below)
default: 10
# Optional: Mode for retention. (default: shown below)
# all - save all recording segments for events regardless of activity
# motion - save all recordings segments for events with any detected motion
# active_objects - save all recording segments for event with active/moving objects
#
# NOTE: If the retain mode for the camera is more restrictive than the mode configured
# here, the segments will already be gone by the time this mode is applied.
# For example, if the camera retain mode is "motion", the segments without motion are
# never stored, so setting the mode to "all" here won't bring them back.
mode: motion
# Optional: Per object retention days
objects:
person: 15
→ Mode de retention : motion par défaut. Ce que je comprends, c’est que si le mode = motion, tu peux avoir la production d’un event (MQTT), mais si l’objet est statique, tu n’auras pas d’enregistrement d’image ou video
il serait interessant de regarder dans ce genre de situaiton les champs :
"has_snapshot": false,
"has_clip": false,
"stationary": false, // whether or not the object is considered stationary
dans le json recu dans mqtt
Norbert