@apocaliss92/scrypted-reolink-native 0.1.32 → 0.1.35
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/README.md +6 -4
- package/dist/main.nodejs.js +1 -1
- package/dist/plugin.zip +0 -0
- package/package.json +3 -2
- package/src/baichuan-base.ts +32 -4
- package/src/camera-battery.ts +0 -6
- package/src/camera.ts +1 -36
- package/src/common.ts +646 -17
- package/src/debug-options.ts +4 -0
- package/src/main.ts +158 -4
- package/src/multiFocal.ts +1 -29
- package/src/nvr.ts +37 -32
- package/src/stream-utils.ts +24 -7
- package/src/utils.ts +870 -2
- package/logs/composite-stream.txt +0 -16390
- package/logs/lense.txt +0 -44
- package/logs/multifocal.txt +0 -136
- package/logs/multifocal2.txt +0 -3585
package/README.md
CHANGED
|
@@ -9,8 +9,10 @@ The plugin will automatically distinguish between:
|
|
|
9
9
|
|
|
10
10
|
Battery cameras will be automatically set-up to disable prebuffer streams and snapshots (to preserve battery).
|
|
11
11
|
|
|
12
|
-
All the devices will be offered of RTSP and RTMP streams when available, and Native streams built upon the native reolink protocolos
|
|
12
|
+
All the devices will be offered of RTSP and RTMP streams when available, and Native streams built upon the native reolink protocolos
|
|
13
13
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
14
|
+
Videoclips are available as opt-in with auto-download possibilites to fasten the loading. Since Reolink does nto store snapshots, scrypted will generate them when the clip is requested for the first time or on a schedule (settings available for that)
|
|
15
|
+
|
|
16
|
+
Multifocal cameras (such as Trackmix) will be provided with a combined stream in PIP-mode
|
|
17
|
+
|
|
18
|
+
## Currently motion on standalone battery cams is not reliable, once the camera goes to sleep there is no known way (at least to me) to catch the motion events coming from PIR. The hub is able to get this informaion, will investigate further.
|