@apocaliss92/scrypted-advanced-notifier 4.6.4 → 4.7.1
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 +4 -0
- package/README.md +12 -0
- package/dist/plugin.zip +0 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
<details>
|
|
2
2
|
<summary>Changelog</summary>
|
|
3
3
|
|
|
4
|
+
### 4.7.0
|
|
5
|
+
- Recording rules implemented. This is a drop-in replacement for events-recorder plugin (if you ever heard of it). Creating a new Recording Rule will let the plugin register configurable clips (including prebuffer, depends on the single camera how much it will be). This will allow to have an events based camera only when relevant events happen
|
|
6
|
+
- Events handling has been improved, some resources have been moved on the main storage directory, cleanups of resource optimized. It's now possible per camera to define how much space (or days) to allocate. Events have their own retention settings
|
|
7
|
+
|
|
4
8
|
### 4.6.2
|
|
5
9
|
- Audio analysis pipeline moved on this plugin. Basic object detector won't be necessary anymore, YAMNET remains a dependency
|
|
6
10
|
- Support for audio volumes dropped, Frigate/BasicObjectDetector won't be source for audio volumes anymore. If you were relying on this just drop a message, can restore if required
|
package/README.md
CHANGED
|
@@ -127,6 +127,18 @@ Detection rules can also detect audio labels, i.e. crying, scream, speech etc. T
|
|
|
127
127
|
|
|
128
128
|
Impact of the onboard classifier is relatively small and it can replace completely the smart audio sensor
|
|
129
129
|
|
|
130
|
+
### Recording (only on camera)
|
|
131
|
+
|
|
132
|
+
These rules let the cameras to record configurable videoclips. Mostly use these on camera where NVR might be overkill to be used, the app will still show the clips in a nice way
|
|
133
|
+
|
|
134
|
+
They are based on some criteria:
|
|
135
|
+
- detection classes, what should initially trigger the recording
|
|
136
|
+
- score threshold, the minimum score to trigger the recording, leave empty for any detection
|
|
137
|
+
- Minimum delay between clips, how many seconds to wait, at minimum, to record the following clip
|
|
138
|
+
- Post event seconds, how many seconds to record, at minimum, after the recording starts. The default camera prebuffer will be extra pre-event seconds on top
|
|
139
|
+
- Max clip length, seconds cap of the clip, following detections will prolong the original clip length
|
|
140
|
+
- Prolong clip on motion, prolong the clip also for simple motion events
|
|
141
|
+
|
|
130
142
|
### Occupancy (only on camera)
|
|
131
143
|
|
|
132
144
|
These rules will monitor a specific area to mark it as occupied or not
|
package/dist/plugin.zip
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/apocaliss92/scrypted-advanced-notifier"
|
|
7
7
|
},
|
|
8
|
-
"version": "4.
|
|
8
|
+
"version": "4.7.1",
|
|
9
9
|
"scripts": {
|
|
10
10
|
"scrypted-setup-project": "scrypted-setup-project",
|
|
11
11
|
"prescrypted-setup-project": "scrypted-package-json",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"@scrypted/common": "file:../scrypted/common",
|
|
54
|
-
"@scrypted/sdk": "0.5.
|
|
54
|
+
"@scrypted/sdk": "0.5.53",
|
|
55
55
|
"axios": "^0.23.0",
|
|
56
56
|
"jimp": "^1.6.0",
|
|
57
57
|
"lodash": "^4.17.21",
|