mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-06 19:18:59 +00:00
989 B
989 B
layout, title, description, date, sidebar, comments, sharing, footer, ha_category
layout | title | description | date | sidebar | comments | sharing | footer | ha_category |
---|---|---|---|---|---|---|---|---|
page | Generic MJPEG IP Camera | Instructions how to integrate IP cameras within Home Assistant. | 2015-11-09 08:36 | true | false | true | true | Camera |
The mjpeg
component allows you to integrate IP cameras which are capable to stream their video with MJPEG into Home Assistant.
To enable this sensor in your installation, add the following to your configuration.yaml
file:
# Example configuration.yaml entry
camera:
platform: mjpeg
mjpeg_url: http://192.168.1.92/mjpeg
name: my sample camera
username: USERNAME
password: PASSWORD
Configuration variables:
- mjpeg_url Required: The URL your camera serves the video on, eg. http://192.168.1.21:2112/
- name Optional: This parameter allows you to override the name of your camera.
- username Optional: The username for accessing your camera.
- password Optional: The password for accessing your camera.