@apocaliss92/scrypted-advanced-notifier 4.3.54 → 4.3.56
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/README.md +17 -10
- package/dist/plugin.zip +0 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
@@ -58,7 +58,9 @@ Notifications can be disabled for a specific camera on the camera page, Advanced
|
|
58
58
|
Notifications can be disabled globally on the general tab of the plugin
|
59
59
|
|
60
60
|
### Scrypted NVR notifiers
|
61
|
+
|
61
62
|
Plugins supports scripting of the NVR buitin notifiers, following features are available:
|
63
|
+
|
62
64
|
- discover to MQTT
|
63
65
|
- Notifier notifications disabled: completely disable notifications for a specific notifier
|
64
66
|
- Camera notifications disabled: disable notifications for a specific camera
|
@@ -67,10 +69,12 @@ Plugins supports scripting of the NVR buitin notifiers, following features are a
|
|
67
69
|
- Enable AI to generate descriptions. To make this to work, each camera and notifier should be extended with the Advanced notifier pluign and activate the AI flag on both. Reason is that ai calls can be expensive and needs to be explicitely enabled on both entities
|
68
70
|
|
69
71
|
**NVR notifiers can be used both as plugin notifiers, then with rules and everything, or just to enhance the NVR notifications.**
|
72
|
+
|
70
73
|
- If you want to use it as plugin notifier, you should keep the notifier enabled (at the very bottom of the page) BUT disable all the detection classes (on the device page of the device, i.e. `Scrypted iPhone App (user)`)
|
71
74
|
- If you want the plugin to just enhance the NVR notifications, there is nothing to change to make it work with the plugin. Just extend the notifier with this plugin and use the features you like to use
|
72
75
|
|
73
76
|
## Rules
|
77
|
+
|
74
78
|
Rules can be of following types: Detection, Occupancy, Audio, Timelapse. These properties are in common with all, some are hidden until the `Show more configurations` gets activated
|
75
79
|
|
76
80
|
- `Activation type`: when the rule shoul be active
|
@@ -102,6 +106,7 @@ These rules can be created for multiple cameras (on the plugin page) or per sing
|
|
102
106
|
- Set a `Custom text` if a specific text should be applied. By default detection rules will use the texts defined in the plugin tab `Texts`, many placeholder are available to enrich the content
|
103
107
|
- Check `Enable AI to generate descriptions` if you want to let AI generate a description text out of the image. AI settings are available on the plugin page under the AI, currently supported: GoogleAi, OpenAi, Claude, Groq
|
104
108
|
- Set `CLIP Description` to use semantic search and filter out even more detections. It will be applied at the very end of the chain, when all the filters already had effect. Set `CLIP confidence level` to finetune the confidence level of the search
|
109
|
+
- Set `AI filter` to send the image to the choosen AI tool to confirm the input prompt
|
105
110
|
- Set `Image post processing` to process notification images:
|
106
111
|
- MarkBoundaries will drawn a coloured rectangle around the detected object
|
107
112
|
- Crop will crop the image around the detected object
|
@@ -142,6 +147,7 @@ Define a timeframe, the plugin will collect frames from the camera and generate
|
|
142
147
|
- Use the `Generate now` button to reuse the frames collected the previous session. They will be stored until the following session starts
|
143
148
|
|
144
149
|
### Audio (only on camera)
|
150
|
+
|
145
151
|
**Audio rules will activate only if a source of audio measurement is active. These are currently probided by Basic object detector (Audio detector mixin) and Frigate Bridge (Frigate audio detector).**
|
146
152
|
Audio rules will monitor the audio received by the camera
|
147
153
|
|
@@ -166,10 +172,6 @@ The plugin will store on filesystem, if configured, images for every basic detec
|
|
166
172
|
- Set `Minimum notification delay` to debounce further notifications
|
167
173
|
- Set `Minimum MQTT publish delay` to debounce the image update on MQTT for this basic detections
|
168
174
|
|
169
|
-
## Homeassistant
|
170
|
-
|
171
|
-
It's possbile to configure an homeassistant connection (or utilize the one configured in the `Homeassistant` plugin) to fetch configured entity IDs which are identified by one of the `Entity regex patterns`. The entities fetched will be available as selection on each camera/sensor to alias them with an homeassistant entity. This helps the `OnActive` rules to send entityIds instead of Scrypted identifiers.
|
172
|
-
|
173
175
|
## Webhooks
|
174
176
|
|
175
177
|
Some basic webhooks are available
|
@@ -178,11 +180,15 @@ Some basic webhooks are available
|
|
178
180
|
|
179
181
|
Will provide the latest registered image for each type, on the camera settings will be provided the basic url, {IMAGE_NAME} should be replaced with one of the following:
|
180
182
|
|
181
|
-
- `object-detection-{ motion | any_object | animal | person | vehicle }`
|
182
|
-
- `object-detection-{ motion | any_object | animal | person | vehicle }-
|
183
|
-
- `object-detection-
|
184
|
-
- `object-detection-face-{ known person label }
|
185
|
-
- `
|
183
|
+
- `object-detection-{ motion | any_object | animal | person | vehicle }`
|
184
|
+
- `object-detection-{ motion | any_object | animal | person | vehicle }-{ Crop | MarkBoundaries}`
|
185
|
+
- `object-detection-{ motion | any_object | animal | person | vehicle }-{ NVR | Frigate }`
|
186
|
+
- `object-detection-face-{ known person label }`
|
187
|
+
- `object-detection-face-{ known person label }-{ NVR | Frigate }`
|
188
|
+
- `rule-{ ruleName }`
|
189
|
+
- `rule-{ ruleName }-{ motion | any_object | animal | person | vehicle }`
|
190
|
+
- `rule-{ ruleName }-{ Crop | MarkBoundaries}`
|
191
|
+
- `rule-{ ruleName }-{ Crop | MarkBoundaries}-{ motion | any_object | animal | person | vehicle }`
|
186
192
|
|
187
193
|
### POST detection images
|
188
194
|
|
@@ -192,7 +198,8 @@ on some classes and define a minimum delay.
|
|
192
198
|
## Adanced Alarm System
|
193
199
|
|
194
200
|
The plugin provides a security system hooked into the plugin detection rules. To use it this will be required:
|
201
|
+
|
195
202
|
- Create 1 or more detection rule on the plugin page with activation type `AdvancedSecuritySystem` and set 1 or more modes to activate the rule
|
196
203
|
- Setup the provided `Advanced security system` device with preferred preferences, such as texts or devices that can be bypassed during the activation
|
197
204
|
|
198
|
-
The device is discovered on MQTT and completely compatible with Homekit.
|
205
|
+
The device is discovered on MQTT and completely compatible with Homekit.
|
package/dist/plugin.zip
CHANGED
Binary file
|
package/package.json
CHANGED