@scrypted/nvr 0.0.305 → 0.1.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 +10 -0
- package/README.md +21 -13
- package/dist/plugin.zip +0 -0
- package/package.json +9 -5
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -34,7 +34,10 @@ The NVR requires a storage directory for recordings. It is highly recommended to
|
|
|
34
34
|
### Camera Setup
|
|
35
35
|
|
|
36
36
|
1. After adding a camera to Scrypted using the appropriate camera plugin, enable recording in the Camera Settings by selecting `Scrypted NVR` in the `Integrations and Extensions` list. Scrypted NVR highly recommends following the [Scrypted Codec Settings guide](https://github.com/koush/scrypted/wiki/Codec-Settings) to configure your camera for optimal recording and playback performance (these are the same settings for HomeKit). You can use the admin page provided by your camera manufacturer to configure these settings.
|
|
37
|
-
2. Object Detection
|
|
37
|
+
2. Install an Object Detection Plugin:
|
|
38
|
+
* MacOS: [CoreML Object Detection](/endpoint/@scrypted/core/public/#/component/plugin/install/@scrypted/coreml)
|
|
39
|
+
* Linux/Windows: [Tensorflow Lite Object Detection](/endpoint/@scrypted/core/public/#/component/plugin/install/@scrypted/tensorflow-lite)
|
|
40
|
+
3. Object Detection can then be enabled in `Integrations and Extensions`. The extension provides event thumbnails and rich notifications to the app. The detection process will use considerable CPU. System performance will vary based on available resources.
|
|
38
41
|
|
|
39
42
|
### View Cameras and Recordings
|
|
40
43
|
|
|
@@ -69,13 +72,24 @@ All platforms (including iOS) can install the Progressive Web App (PWA):
|
|
|
69
72
|
|
|
70
73
|
<br/>
|
|
71
74
|
|
|
72
|
-
PWA Installation
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
75
|
+
PWA Installation:
|
|
76
|
+
1. On your phone/desktop launch the appropriate browser:
|
|
77
|
+
* iOS: Install with Safari
|
|
78
|
+
* Android: Install with Chrome
|
|
79
|
+
* Windows/Mac/Linux: Install with Edge or Chrome
|
|
80
|
+
2. Visit [the app installation link](https://nvr.scrypted.app/#/install-pwa) and log into Scrypted Cloud.
|
|
81
|
+
3. This page can be installed as an app. See [screenshot](https://user-images.githubusercontent.com/73924/194009896-359021b8-63a1-484f-aed7-35edeff92fa2.jpeg).
|
|
82
|
+
4. Launch the newly installed PWA.
|
|
83
|
+
5. Login with the Scrypted Cloud credentials used in the previous steps.
|
|
84
|
+
6. The app will prompt to login a second time. The second time, use your *local* Scrypted Server credentials.
|
|
76
85
|
|
|
77
|
-
|
|
78
|
-
|
|
86
|
+
<br/>
|
|
87
|
+
|
|
88
|
+
### Discord
|
|
89
|
+
|
|
90
|
+
Help and support can also be found on the [Scrypted Discord #nvr Channel](https://discord.gg/YNNSczz2fE).
|
|
91
|
+
|
|
92
|
+
*Optional/Tip: If you're a member of the Scrypted Discord server, you can use [this link](https://discord.com/oauth2/authorize?scope=identify&client_id=1072990480553496710&response_type=code) to get special flair on your Discord account.*
|
|
79
93
|
|
|
80
94
|
<br/>
|
|
81
95
|
|
|
@@ -90,9 +104,3 @@ Scrypted can optionally be self hosted with a personal custom domain. This setup
|
|
|
90
104
|
In the iOS app:
|
|
91
105
|
* Enter Hostname at: iOS Settings -> Scrypted -> Self Hosted -> Hostname
|
|
92
106
|
* `nvr.example.com` with port `443` forwarded to Scrypted server `12345`: `nvr.example.com`
|
|
93
|
-
|
|
94
|
-
### Discord
|
|
95
|
-
|
|
96
|
-
Help and support can also be found on the [Scrypted Discord #nvr Channel](https://discord.gg/YNNSczz2fE).
|
|
97
|
-
|
|
98
|
-
*Optional/Tip: If you're a member of the Scrypted Discord server, you can use [this link](https://discord.com/oauth2/authorize?scope=identify&client_id=1072990480553496710&response_type=code) to get special flair on your Discord account.*
|
package/dist/plugin.zip
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scrypted/nvr",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"scrypted-setup-project": "scrypted-setup-project",
|
|
6
6
|
"prescrypted-setup-project": "scrypted-package-json",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"name": "Scrypted NVR",
|
|
20
20
|
"type": "DataSource",
|
|
21
21
|
"interfaces": [
|
|
22
|
+
"DeviceDiscovery",
|
|
22
23
|
"DeviceProvider",
|
|
23
24
|
"OauthClient",
|
|
24
25
|
"Settings",
|
|
@@ -28,8 +29,7 @@
|
|
|
28
29
|
"LauncherApplication"
|
|
29
30
|
],
|
|
30
31
|
"pluginDependencies": [
|
|
31
|
-
"@scrypted/snapshot"
|
|
32
|
-
"@scrypted/tensorflow-lite"
|
|
32
|
+
"@scrypted/snapshot"
|
|
33
33
|
],
|
|
34
34
|
"realfs": true
|
|
35
35
|
},
|
|
@@ -45,19 +45,23 @@
|
|
|
45
45
|
"timelapse"
|
|
46
46
|
],
|
|
47
47
|
"dependencies": {
|
|
48
|
+
"@koush/axios-digest-auth": "^0.8.5",
|
|
48
49
|
"@koush/werift-src": "file:../scrypted/external/werift",
|
|
49
50
|
"@scrypted/common": "../scrypted/common",
|
|
50
51
|
"@types/node": "^18.11.18",
|
|
51
52
|
"axios": "^0.24.0",
|
|
52
53
|
"check-disk-space": "^3.3.1",
|
|
54
|
+
"fast-xml-parser": "^4.1.3",
|
|
53
55
|
"mkdirp": "^1.0.4",
|
|
54
56
|
"rimraf": "^3.0.2",
|
|
55
|
-
"tmp-promise": "^3.0.3"
|
|
57
|
+
"tmp-promise": "^3.0.3",
|
|
58
|
+
"uuid": "^9.0.0"
|
|
56
59
|
},
|
|
57
60
|
"devDependencies": {
|
|
58
61
|
"@scrypted/sdk": "file:../scrypted/sdk",
|
|
59
62
|
"@scrypted/types": "file:../scrypted/sdk/types",
|
|
60
63
|
"@types/mkdirp": "^1.0.2",
|
|
61
|
-
"@types/rimraf": "^3.0.2"
|
|
64
|
+
"@types/rimraf": "^3.0.2",
|
|
65
|
+
"@types/uuid": "^9.0.1"
|
|
62
66
|
}
|
|
63
67
|
}
|