I want to create some automation.
When the camera from DoorEye recognize any face - it will be saved it on the directory and if the face is already on the database send my notification in the HA app with the name
My DoorEye camera is idle and every 5-10 minutes changes the token /api/camera_proxy/camera.dooreye?token=40dfa0e0e5917d99d68d1a81e0ee4eb290674ec46ff51d9d4fd7aefbcea714fb
How do I start making the camera take every 1 sec photo and check if there are some faces?
TRIGGER
platform: mqtt
topic: frigate/events
CONDTION
condition: template
value_template: '{{ trigger.payload_json["after"]["camera"] == "Frigate_<yourcamera>"}}'
ACTION
Send <camera entity> to deep stack for image process
Purpose of frigate was to reduce images sent to deep stack for checking
When frigate send object it will send MQTT message. You can use that as trigger
You may add conditions like, only send when from a specific camera
If only checking one camera the action is simple but if multiple camera you may need to create template to send the correct camera for checking
I don’t use dooreye/deepstack so I presume you already have an integration that you may utilize for this service