@scrypted/nvr 0.0.282 → 0.0.284

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 CHANGED
@@ -10,7 +10,7 @@ This readme will guide you through the NVR setup, smart detection setup, and app
10
10
 
11
11
  This plugin is in a *paid* public beta. A [live demo server](https://demo.scrypted.app/#/demo) and free trial is available to test the product.
12
12
 
13
- The Scrypted NVR Subscription can be purchased and managed at the [billing portal](https://billing.scrypted.app). Once you have subscribed, click the `Retrieve License` button in the Settings panel for this plugin.
13
+ The Scrypted NVR Subscription can be purchased and managed at the [billing portal](https://billing.scrypted.app). To associate the license with your Scrypted Server, click the `Login` button within the Scrypted NVR plugin page of the management console.
14
14
 
15
15
  *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.*
16
16
 
@@ -18,13 +18,15 @@ The Scrypted NVR Subscription can be purchased and managed at the [billing porta
18
18
 
19
19
  The NVR requires a storage directory for recordings. It is highly recommended to use a SATA/USB surveillance drive (and not an SD Card, etc) for storage.
20
20
 
21
- 1. Enter the drive's directory path in the Scrypted NVR Plugin settings. I.e., `/Volumes/External` or `/media/external`, etc.
21
+ 1. Enter the drive's directory path in the Scrypted NVR Plugin settings. For example, `/Volumes/External/video` (Mac), `/mnt/sda/video` (Linux), `Z:\video` (Windows), or `/nvr` (Docker).
22
22
  * **Docker installations will need to mount the drive path into the container as a volume**. The Scrypted Docker Compose file can typically be found at `~/.scrypted/docker-compose.yml`. Edit the compose file as follows:
23
23
  ```
24
24
  volumes:
25
25
  - ~/.scrypted/volume:/server/volume
26
26
  # modify and add the additional volume for Scrypted NVR
27
- - /media/external:/media/external
27
+ # the following example would mount the /mnt/sda/video path on the host
28
+ # to the /nvr path inside the docker container.
29
+ - /mnt/sda/video:/nvr
28
30
  ```
29
31
  2. Observe the free space reported by Scrypted NVR Plugin to verify the correct drive is being used.
30
32
 
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.0.282",
3
+ "version": "0.0.284",
4
4
  "scripts": {
5
5
  "scrypted-setup-project": "scrypted-setup-project",
6
6
  "prescrypted-setup-project": "scrypted-package-json",