Using audio in a HA notification trigger #20904
Replies: 3 comments 4 replies
-
📚 Sources: Have another question? Just tag @inkeep. |
Beta Was this translation helpful? Give feedback.
-
|
For questions about the blueprint, you'll want to reach out on the Sgtbatten GitHub: https://github.com/SgtBatten/HA_blueprints |
Beta Was this translation helpful? Give feedback.
-
|
You can create a custom Home Assistant automation that triggers on the The Here's the structure you'll be working with from the MQTT events topic(1): {
"type": "update",
"after": {
"id": "1607123955.475377-mxklsc",
"camera": "front_door",
"label": "person",
"attributes": {
"face": 0.86
},
"has_snapshot": false,
"has_clip": false
}
}To create your automation in Home Assistant, you would:
The key is that the For MQTT configuration in Frigate, ensure MQTT is enabled and connected to the same MQTT server as Home Assistant(2). 📚 Sources: Have another question? Just tag @inkeep. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm trying to use a "bark" event to trigger a notification using the Frigate Notification Blueprint.
After it didn't work initially I did some reading through historical posts and it seems at some point the "bark" label was only being sent via MQTT in an
updatevs thenewmessage. I haven't had the chance to test that as causing Frigate to recognize a bark event isn't something I'm naturally equipped for.I did try changing the blueprint to trigger on
updateinstead of new, and it works but its not passing the video/snapshot on. I think there might be event is missing or something based on my recollection of some late night reading I did in the past week.So, I wanted to ask:
newMQTT messages, or only updates?Thanks!
Beta Was this translation helpful? Give feedback.
All reactions