Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d01d72 commit 040aed6Copy full SHA for 040aed6
source/_integrations/generic.markdown
@@ -139,3 +139,19 @@ camera:
139
still_image_url: http://194.218.96.92/jpg/image.jpg
140
stream_source: rtsp://194.218.96.92:554
141
```
142
+
143
+### Secured access to the camera
144
145
+To access a camera that requires secured access for still image or live stream (an HIK in my case).
146
147
+```yaml
148
+camera:
149
+ - platform: generic
150
+ still_image_url: "http://192.168.1.100/ISAPI/Streaming/Channels/101/picture"
151
+ stream_source: "rtsp://USERNAME:[email protected]:554/Streaming/Channels/102"
152
+ name: "My Camera"
153
+ verify_ssl: false
154
+ username: "USERNAME"
155
+ password: "PASSWORD"
156
+ authentication: digest
157
+```
0 commit comments