-
Notifications
You must be signed in to change notification settings - Fork 93
Description
I currently have home assistant running as a docker container. I created a separate docker container for go2rtc and added webrtc as an integration. Weirdly, the only entity which webrtc is showing is its own version. My doorbell entities all got added, including the stream, but per the title, the stream is a broken image icon. If I go directly to go2rtc, the doorbell stream is available but won't actually load, it just spins and spins. I have learned and extensively hyperfixated on home assistant for the past week, so would classify myself as a newbie, but also a quick learner. Go2RTC logs offer no help or insight, but are pasted below. I should also mention that my doorbell is showing as a supported device.
9:50:58.945 AM | info | go2rtc version=1.9.9 platform=linux/amd64 revision=fa580c5 -- | -- | -- 9:50:58.945 AM | info | config path=/config/go2rtc.yaml 9:50:58.945 AM | info | [rtsp] listen addr=:8554 9:50:58.945 AM | info | [api] listen addr=:1984 9:50:58.948 AM | info | [webrtc] listen addr=:8555config.yaml
eufy-security-ws:
image: bropat/eufy-security-ws
container_name: eufy-security-ws
network_mode: host
ports:
- '3000:3000'
environment:
- USERNAME={username}
- PASSWORD={password}
- COUNTRY=US
- LANGUAGE=en
- TRUSTED_DEVICE_NAME=doorbell
- EVENT_DURATION_SECONDS=10
- port=3000
restart: unless-stopped
go2rtc:
image: alexxit/go2rtc:latest
container_name: go2rtc
network_mode: host
type: custom:webrtc-camera
entity: camera.doorbell
ui: true
shortcuts:
- name: Play
icon: mdi:play
service: camera.turn_on
service_data:
entity_id: camera.doorbell
Does anyone know why I have all the entities possible, ie. motion, package, person, pet, power etc. for my doorbell, but no stream?