node-red-contrib-hik-media-buffer 1.0.13 → 1.0.14
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/hik-media-buffer.html +8 -7
- package/hik-snapshot.html +6 -6
- package/package.json +1 -1
package/hik-media-buffer.html
CHANGED
|
@@ -100,15 +100,15 @@
|
|
|
100
100
|
|
|
101
101
|
<img src='img/hik-media-buffer-node.png'>
|
|
102
102
|
|
|
103
|
-
The Hik Media Buffer node connects to
|
|
104
|
-
This node only detects
|
|
103
|
+
<p>The Hik Media Buffer node connects to NVR and outputs the image and the video of the event in case of alarm.</br>
|
|
104
|
+
This node only detects "FieldDetection" and "LineDetection" alarms but can also receive notification of a failed connection of the cameras or NVR.</p></br>
|
|
105
105
|
|
|
106
106
|
<img src='img/hik-media-buffer-configuration.png'>
|
|
107
107
|
|
|
108
|
-
To configure the node you need to enter the
|
|
109
|
-
You must also enter, by pressing the
|
|
108
|
+
<p>To configure the node you need to enter the IP, user and password of the NVR, you can also choose the protocol and port to use.</br>
|
|
109
|
+
You must also enter, by pressing the "add" button, the channel and the correspective IP of the camera, finally you must enter the password of the cameras.</br>
|
|
110
110
|
|
|
111
|
-
This below is an example of msg output:</br>
|
|
111
|
+
This below is an example of msg output:</p></br>
|
|
112
112
|
|
|
113
113
|
```javascript
|
|
114
114
|
msg = {
|
|
@@ -119,6 +119,7 @@
|
|
|
119
119
|
videoPath: "C:\Users\APerucca\AppData\Local\Temp\hik_v_2_1774874791241.mp4", // Path of the video
|
|
120
120
|
imageBuffer: buffer[12360], // Buffer of the image
|
|
121
121
|
status: "online", // Status of the camera
|
|
122
|
-
_msgid: "45fd74589048966d"
|
|
122
|
+
_msgid: "45fd74589048966d"
|
|
123
123
|
};
|
|
124
|
-
|
|
124
|
+
```
|
|
125
|
+
</script>
|
package/hik-snapshot.html
CHANGED
|
@@ -74,16 +74,16 @@
|
|
|
74
74
|
|
|
75
75
|
<img src='img/hik-snapshot-node.png'>
|
|
76
76
|
|
|
77
|
-
The Hik Snapshot node connects to
|
|
78
|
-
This node can also report if there are recordings of the day this node is triggered for each camera
|
|
77
|
+
<p>The Hik Snapshot node connects to NVR and generates a live image for each camera when it receives payload = true as input.
|
|
78
|
+
This node can also report if there are recordings of the day this node is triggered for each camera.</p>
|
|
79
79
|
|
|
80
80
|
<img src='img/hik-snapshot-configuration.png'>
|
|
81
81
|
|
|
82
|
-
To configure the node you need to enter the
|
|
82
|
+
<p>To configure the node you need to enter the IP, user and password of the NVR, you can also choose the protocol and port to use.</br>
|
|
83
83
|
You must also enter the number of the channels you want to get the snapshot of.</br>
|
|
84
84
|
If you enter "5", you will get the output of the first 5 channels on the NVR, so if you have 5 cameras on the NVR but one of them is not on the first five channels you won't get the snapshot of that camera.</br>
|
|
85
85
|
|
|
86
|
-
This below is an example of msg output:</br>
|
|
86
|
+
This below is an example of msg output:</p></br>
|
|
87
87
|
|
|
88
88
|
```javascript
|
|
89
89
|
msg = {
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
isRecording: true,
|
|
101
101
|
2: object,
|
|
102
102
|
3: object,
|
|
103
|
-
4: object
|
|
104
|
-
}
|
|
103
|
+
4: object
|
|
104
|
+
}
|
|
105
105
|
```
|
|
106
106
|
</script>
|