@apocaliss92/scrypted-reolink-native 0.1.2 → 0.1.4
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/.vscode/settings.json +1 -1
- package/README.md +12 -3
- package/dist/main.nodejs.js +1 -1
- package/dist/plugin.zip +0 -0
- package/package.json +2 -2
- package/src/camera-battery.ts +72 -64
- package/src/camera.ts +11 -13
- package/src/common.ts +82 -65
- package/src/connect.ts +136 -2
- package/src/intercom.ts +1 -1
- package/src/main.ts +135 -80
- package/src/nvr.ts +364 -0
- package/src/presets.ts +6 -6
- package/src/stream-utils.ts +26 -25
package/.vscode/settings.json
CHANGED
package/README.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
This plugin aims to use reolink cameras with the only native API to allow a wider range of unsupported cameras + battery ones without hub.
|
|
4
4
|
|
|
5
|
-
The plugin
|
|
6
|
-
-
|
|
7
|
-
-
|
|
5
|
+
The plugin will automatically distinguish between:
|
|
6
|
+
- Regular cameras
|
|
7
|
+
- Battery cameras
|
|
8
|
+
- NVRs
|
|
9
|
+
|
|
10
|
+
Battery cameras will be automatically set-up to disable prebuffer streams and snapshots (to preserve battery).
|
|
11
|
+
|
|
12
|
+
All the devices will be offered of RTSP and RTMP streams when available, and Native streams built upon the native reolink protocolos, these might be still unstable but with less latency
|
|
13
|
+
|
|
14
|
+
Missing features & Known bugs
|
|
15
|
+
- Motion is currently missing from standalone battery cameras, looking for a solution. There is the possibility to catch it as soon as it comes but it would mean to impact the battery because of the constant session
|
|
16
|
+
- Scrubbing with Native streams seems broken, working on a solution
|