Hi there. I apologize if I am in the wrong spot, but didnt know exactly where to start.
I have the latest version of Home Assistant running, and I have installed Eufy Security, Go2RTC and the WebRTC integrations.
I have used the documentation from github for adding cards and they work for the most part…
If I use this setup below, then the rtsp stream runs no matter what and it times out after a few minutes and you can’t get it to start again without going into the Eufy App and toggling on/off the RTSP feature for that camera. The error that pops up is “mse: streams: wrong response on DESCRIBE”
type: custom:webrtc-camera
url: rtsp://[email protected]/live2
poster: image.backyard_event_image
ui: true
shortcuts:
- name: Play
icon: mdi:play
service: camera.turn_on
service_data:
entity_id: camera.backyard
- name: Stop
icon: mdi:stop
service: camera.turn_off
service_data:
entity_id: camera.backyard
AND if I use this alternate configuration below, I get an error that says “can’t get url for camera.xx” and I don’t know why, or where to find the url. I checked the entities of the camera as well and it does in fact show me the stream url and rtsp url. So I know they are there.
type: custom:webrtc-camera
entity: camera.backyard
poster: image.backyard_event_image
ui: true
shortcuts:
- name: Play
icon: mdi:play
service: camera.turn_on
service_data:
entity_id: camera.backyard
- name: Stop
icon: mdi:stop
service: camera.turn_off
service_data:
entity_id: camera.backyard
Can someone people tell what I may be missing, need to add or what might be wrong?
Ultimately I would like to be able to open the dashboard and play the rtsp streams at the push of a button and stop them accordingly OR maybe it makes sense for them to start auto playing when the dashboard is being viewed only?
Any help would be appreciated.