RPi-Cam-Web-Interface

I’ve setup a pi and have a good experience streaming a pi-camera feed over the network using the RPi-Cam-Web-Interface tool. It has an mjpg stream option so have tried to integrate with HA using the generic camera but get the Image not found error. I probably need to tweak the config on the pi or HA. Anybody have experience/advice?
Cheers

camera:
  - platform: mjpeg
    mjpeg_url: http://192.168.1.108/html/

OK solved via RPi Cam Web Interface :joy:

camera:
  - platform: mjpeg
    mjpeg_url: http://192.168.1.108/html/cam_pic.php

1 Like

I have mine formatted like this, achieves the same result.

- platform: generic
  still_image_url: http://192.168.1.111:5004/cam_pic.php
  username: USERNAME
  password: PASSWORD
  name: Downstairs
1 Like