From ee92e2fb3f6864e23aa74f21747cc4df3ad54346 Mon Sep 17 00:00:00 2001 From: Evan Morse <32440312+RowdyDog12@users.noreply.github.com> Date: Mon, 24 Dec 2018 16:43:11 -0600 Subject: [PATCH] Update MJPEG docs to include Blue Iris integration (#7943) * Update MJPEG docs to include Blue Iris integration Added a second example to include a configuration for pulling Blue Iris camera feeds into Home Assistant. * format as yaml * Generalize username/password --- source/_components/camera.mjpeg.markdown | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/source/_components/camera.mjpeg.markdown b/source/_components/camera.mjpeg.markdown index 48ef4767b18..35a6031ab58 100644 --- a/source/_components/camera.mjpeg.markdown +++ b/source/_components/camera.mjpeg.markdown @@ -67,3 +67,15 @@ camera: still_image_url: http://IP/image.jpg mjpeg_url: http://IP/video/mjpg.cgi ``` + +Example of integrating Blue Iris Cameras from a Blue Iris server. + +```yaml +camera: + - platform: mjpeg + name: Livingroom Camera + mjpeg_url: http://IP:PORT/mjpg/CAMERASHORTNAME/video.mjpeg + username: BLUE_IRIS_USERNAME + password: BLUE_IRIS_PASSWORD + authentication: basic +```