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
This commit is contained in:
Evan Morse 2018-12-24 16:43:11 -06:00 committed by Joakim Sørensen
parent 7aaca64caa
commit ee92e2fb3f

View File

@ -67,3 +67,15 @@ camera:
still_image_url: http://IP/image.jpg still_image_url: http://IP/image.jpg
mjpeg_url: http://IP/video/mjpg.cgi 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
```