https://github.com/apocaliss92/scrypted-advanced-notifier - For requests and bugs
This plugin is feature rich notifier to handle detection notifications.
It's possbile to configure an homeassistant connection (or utilize the one configured in the Homeassistant
plugin) to fetch configured Rooms and Entities which are identified by one of the Entity regex patterns
, these can be then assigned to a camera or sensor to add metadata used to render the notification. The fetched data will be visible in the METADATA
group, and edited
It's possible to use MQTT to report data to homeassistant, can be configured standalone or use the configuration from the main MQTT
plugin.
Active entities topic
: topic the plugin will subscribe to activate the rulesOnActive
. Useful to sync the plugin with an alarm system connected to homeassistant (i.e. Alarmo)Active devices for MQTT reporting
: devices selected will be periodically reported to MQTT with several information, i.e. last detections happened, images, status and so on
Mainly supported notifiers are from Homeassistant
and Pushover
plugins
Active notifiers
: master controller of active notifiers. Each rule will specify it's own set of notifiers
List of strings that will be shown on the notifications based on the detection type. Useful to have localized text, many placeholders are available and specified in each text
Fine grained rules can be defined to filter out detections and dispatch to specific notiries at specific conditions, called Detection rules
. These rules can be added on Plugin level or on Camera level. Each rule has the following settings:
Enabled
: Enable or disable the ruleActivation
: One of Always, OnActive, Schedule- Always - the rule will always be active (besides enabled flag being off)
- OnActive - the rule will be active only for the devices selected in the
"OnActive" devices
selector (in Detection Rules -> General). This target is automatically synced with the MQTT topic defined in the setting "Active entities topic" under MQTT. MQTT Must be enabled - Schedule - the rule will be active based on a schedule defined in the rule
Priority
: Priority of the notification, will have effect only for pushoverCustom text
: override text to show on each notification. Will override the defaultsDetection classes
: detection classes to trigger the notificationScore threshold
: minimum score to trigger a notificationNotifiers
: notifiers to notifyOpen sensors
: sensors that must be open to trigger a notificationClosed sensors
: sensors that must be closed to trigger a notificationActions
: actions that will be shown on the notification. Rendering will vary depending on the notifier. For HA will be an actionable notification, for pushover will be additional links in the text. Both of them require homeassistant to work, the same event will be triggered with the specified action typeDevices
: Only available forAlways
andSchedule
activations. Devices for which notification is activeDay - Start time - End time
: properties required for theSchedule
activation
The same detection rules can be defined on each camera level with some additional properties
Whitelisted zones
: Only detections on these zones will trigger a notificationBlacklisted zones
: Detections on these zones will be ignored
A test notification can be send with the specified settings
On each camera/sensor can be set some metadata to enhance the notifications
Room
: room where the camera is locatedEntityID
: alias of the camera (i.e. on homeassistant). Only used to identify the camera when syncing theOnActive
devices from HomeassistantDevice class
: homeassistant device class to specify the type of the sensor created on MQTT. Defaults will be fine
Actions
: actionable notifications added to the notificationMinimum notification delay
: minimum amount of seconds to wait between notification for the same combination of room-detectionClassSnapshot width/height
: dimensions of the snapshot (only for cameras)Ignore camera detections
: ignore detections from the camera. Should always be disabled if the camera is not active on the NVR, otherwise no detections would ever happen (only for cameras)Linked camera
: camera linked to this sensor. Any event happening on the sensor will use the provided camera for the snapshot
Simple webooks to retrieve information, only the last snapshot is for now available, could be extended with something else in the future
Snapshot scale
: scale up/down the snapshot of a camera. If 1 will use the originated on camera and will improve performancesTexts
: override of the plugin level texts
- Add boundary box on detected object (really struggling :D)
- Notification snoozing
- Add more test suits to emulate a detection on specific conditions
- Setup a timeframe where all the notifications are kept and release as a GIF at the end (I saw a comment from an user on discord and I found it a great idea!)
- ...