From 040aed613a781d930554c9d5533a40af06b11a24 Mon Sep 17 00:00:00 2001 From: cnico Date: Mon, 15 Mar 2021 14:39:13 +0100 Subject: [PATCH] generic camera : example of secured access (#16991) Co-authored-by: Franck Nijhof --- source/_integrations/generic.markdown | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/source/_integrations/generic.markdown b/source/_integrations/generic.markdown index f545c310732..8f1fd8957ef 100644 --- a/source/_integrations/generic.markdown +++ b/source/_integrations/generic.markdown @@ -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 +```