You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Everything else (rtsp, hls, ...) is working and accessible from different clients.
It is just that the one I really need (WebRTC) is not working :D
Here is my config:
version: "3"services:
wyze-bridge:
container_name: wyze-bridgerestart: unless-stoppedimage: mrlt8/wyze-bridge:latestnetwork_mode: hostports:
- 1935:1935# RTMP
- 8554:8554# RTSP
- 8888:8888# HLS
- 8889:8889#WebRTC
- 8189:8189/udp # WebRTC/ICE
- 5001:5000# WEB-UI. Note on macOS, port 5000 is used by ControlCenter so we have to change it the first one from 5000 to 5001environment:
- NET_MODE=LAN
- ON_DEMAND=False
- WYZE_EMAIL=${WYZE_EMAIL}
- WYZE_PASSWORD=${WYZE_PASSWORD}
- API_ID=${API_ID}
- API_KEY=${API_KEY}
- WB_IP=0.0.0.0
- WB_BIND_ADDR=0.0.0.0# WebUI and Stream authentication:
- WB_AUTH=True # Set to false to disable web and stream auth.
- STREAM_AUTH=:@${CAMERA_NAME}|::${KLIPPER_IP}@${CAMERA_NAME}
- WB_USERNAME=${WB_USERNAME}
- WB_PASSWORD=${WB_PASSWORD}
Even in the WebUI, when I select the WebRTC from the drop down menu, it just shows a thumbnail and clicking on the play icon does nothing
The text was updated successfully, but these errors were encountered:
No, it’s not configured correctly.
0.0.0.0 is not your IP address.
See the webrtc section of the docs:
WebRTC requires two additional ports to be configured in docker:
ports:
...
- 8889:8889 #WebRTC
- 8189:8189/udp # WebRTC/ICE
In addition, the WB_IP env needs to be set with the IP address of the server running the bridge.
environment:
- WB_IP=192.168.1.116
Do NOT use the 192.168.1.116 address. That is an example only! (Unless, by some coincidence that AID your IP address).
Put the address of your own Wyze Bridge there.
Everything else (rtsp, hls, ...) is working and accessible from different clients.
It is just that the one I really need (WebRTC) is not working :D
Here is my config:
Even in the WebUI, when I select the WebRTC from the drop down menu, it just shows a thumbnail and clicking on the play icon does nothing
The text was updated successfully, but these errors were encountered: