Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions source/_integrations/generic.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -139,3 +139,19 @@ camera:
still_image_url: http://194.218.96.92/jpg/image.jpg
stream_source: rtsp://194.218.96.92:554
```

### Secured access to the camera

To access a camera that requires secured access for still image or live stream (an HIK in my case).

```yaml
camera:
- platform: generic
still_image_url: "http://192.168.1.100/ISAPI/Streaming/Channels/101/picture"
stream_source: "rtsp://USERNAME:PASSWORD@192.168.1.100:554/Streaming/Channels/102"
name: "My Camera"
verify_ssl: false
username: "USERNAME"
password: "PASSWORD"
authentication: digest
```