Got some ip cameras streaming in the Motion eye add on just fine but can anyone tell me how to get these into a lovelace card?
Iv tried adding the camera’s into config like below but still no luck they turn up as an entity but show nothing
camera:
anyone point me in the right direction?
thanks
I have my 2 cams set up like this:
- platform: generic
name: outside cam
still_image_url: http://192.168.1.173:8765/picture/1/current/?_username=admin&_signature=<something something>
stream_source: http://192.168.1.173:8081
username: !secret camera_user
password: !secret camera_pass
authentication: digest
- platform: generic
name: inside cam
still_image_url: http://192.168.1.173:8765/picture/2/current/?_username=admin&_signature=<something something>
stream_source: http://192.168.1.173:8082
username: !secret camera_user
password: !secret camera_pass
authentication: digest
do note that I tried using hostnames and though all hosts can resolve and ping all other hostnames, it didn’t really work properly until I used static IPs for the motioneye machine in my setup
but i think in your case it comes down to some weird docker permission stuff or some such as well as I use manual install not the HA OS.