Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 040aed6

Browse files
cnicofrenck
andauthored
generic camera : example of secured access (home-assistant#16991)
Co-authored-by: Franck Nijhof <[email protected]>
1 parent 6d01d72 commit 040aed6

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

source/_integrations/generic.markdown

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,3 +139,19 @@ camera:
139139
still_image_url: http://194.218.96.92/jpg/image.jpg
140140
stream_source: rtsp://194.218.96.92:554
141141
```
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

Comments
 (0)