diff --git a/source/_components/camera.onvif.markdown b/source/_components/camera.onvif.markdown new file mode 100644 index 00000000000..fe8561afa32 --- /dev/null +++ b/source/_components/camera.onvif.markdown @@ -0,0 +1,36 @@ +--- +layout: page +title: "ONVIF Camera" +description: "Instructions on how to integrate a ONVIF camera within Home Assistant." +date: 2017-06-09 21:00 +sidebar: true +comments: false +sharing: true +footer: true +logo: onvif.png +ha_category: Camera +ha_release: 0.47 +--- + + +The `ONVIF` platform allows you to use an ONVIF camera in Home Assistant. This requires FFmpeg component to be already configured. + +To enable your ONVIF in your installation, add the following to your `configuration.yaml` file: + +```yaml +# Example configuration.yaml entry +camera: + - platform: onvif + host: 192.168.1.111 +``` + +Configuration variables: + +- **host** (*Required*): An IP or hostname of the camera. +- **name** (*Optional*): Override the name of your camera. +- **username** (*Optional*): The username for the camera. +- **password** (*Optional*): The password for the camera. +- **port** (*Optional*): The port for the camera. This defaults to 5000 + + +If you are running into trouble with this sensor, please refer to the [Troubleshooting section](/components/ffmpeg/#troubleshooting). diff --git a/source/images/onvif.png b/source/images/onvif.png new file mode 100644 index 00000000000..29284fafe7f Binary files /dev/null and b/source/images/onvif.png differ