Create a local WebRTC, RTSP, RTMP, or HLS/Low-Latency HLS stream for most of your Wyze cameras including the outdoor, doorbell, and 2K cams.
No third-party or special firmware required.
It just works!
Streams direct from camera without additional bandwidth or subscriptions.
Based on @noelhibbard's script with kroo/wyzecam and bluenviron/mediamtx.
Please consider ⭐️ starring or ☕️ sponsoring this project if you found it useful, or use the affiliate link when shopping on amazon!
Install docker and use your Wyze credentials to run:
(If your credentials have special characters, you must escape them)
docker run \
-e WYZE_EMAIL=you@email.com \
-e WYZE_PASSWORD=yourpassw0rd \
-p 1935:1935 -p 8554:8554 -p 8888:8888 -p 5000:5000 \
mrlt8/wyze-bridge:latest
You can then use the web interface at http://localhost:5000
where localhost is the hostname or ip of the machine running the bridge.
See basic usage for additional information or visit the wiki page for additional information on using the bridge as a Home Assistant Add-on.
- NEW:
LOG_TIME
config to add timestamps to the logs. #830 - CHANGED:
DEBUG_LEVEL
is nowLOG_LEVEL
- FIXED:
DEBUG_LEVEL
/LOG_LEVEL
andLOG_FILE
were broken in Home Assistant. #830LOG_FILE
now logs to/config/wyze-bridge/logs/
- FIXED:
autoplay
URL parameter was being ignored - Thanks @stere0123! #826 - NEW: Fullscreen mode on web-ui enables autoplay.
- Disabled
LD_CFP
"Floodlight Pro" because it doesn't use tutk - Thanks @cryptosmasher! #822- This seems to be slightly different than the Gwell cameras (OG/Doorbell Pro). Needs further investigation.
- UPDATED: MediaMTX to v0.23.4.
- FIXED: topic to set
motion_tracking
Thanks @crslen! #823 - FIXED: additional cam info was missing from web-ui.
- NEW: outdoor cam related tutk commands and
battery
topic for API.
See wiki for details.
- CHANGED: API commands are now split into topics and payload values for more flexibility.
- NEW: API commands will initiate connection if not connected.
- NEW: json payload for API commands.
- NEW:
PUT
/POST
methods for REST API. - NEW: MQTT topics for each get and set command.
- NEW: MQTT value gets updated on set command.
- NEW: start/stop/enable/disable over MQTT.
- FIXED: camera busy on re-connect.
Cameras from Gwell Times are currently not supported:
Camera | Model | Supported |
---|---|---|
Wyze Cam v1 [HD only] | WYZEC1 | ✅ |
Wyze Cam V2 | WYZEC1-JZ | ✅ |
Wyze Cam V3 | WYZE_CAKP2JFUS | ✅ |
Wyze Cam V3 Pro [2K] | HL_CAM3P | ✅ |
Wyze Cam Floodlight | WYZE_CAKP2JFUS | ✅ |
Wyze Cam Pan | WYZECP1_JEF | ✅ |
Wyze Cam Pan v2 | HL_PAN2 | ✅ |
Wyze Cam Pan v3 | HL_PAN3 | ✅ |
Wyze Cam Pan Pro [2K] | HL_PANP | ✅ |
Wyze Cam Outdoor | WVOD1 | ✅ |
Wyze Cam Outdoor v2 | HL_WCO2 | ✅ |
Wyze Cam Doorbell | WYZEDB3 | ✅ |
Wyze Battery Cam Pro | AN_RSCW | ❓ |
Wyze Cam Doorbell Pro 2 | AN_RDB1 | ❓ |
Wyze Cam Flood Light Pro [2K] | LD_CFP | |
Wyze Cam Doorbell Pro | GW_BE1 | |
Wyze Cam OG | GW_GC1 | |
Wyze Cam OG Telephoto 3x | GW_GC2 |
Should work on most x64 systems as well as on some arm-based systems like the Raspberry Pi.
The container can be run on its own, in Portainer, Unraid, as a Home Assistant Add-on, locally or remotely in the cloud.
This is similar to the docker run command, but will save all your options in a yaml file.
- Install Docker Compose.
- Use the sample as a guide to create a
docker-compose.yml
file with your wyze credentials. - Run
docker-compose up
.
Once you're happy with your config you can use docker-compose up -d
to run it in detached mode.
NOTE: You may need to update the WebUI links if you're changing the ports or using a reverse proxy.
To update your container, cd
into the directory where your docker-compose.yml
is located and run:
docker-compose pull # Pull new image
docker-compose up -d # Restart container in detached mode
docker image prune # Remove old images
Visit the wiki page for additional information on Home Assistant.
- Two-Factor Authentication (2FA/MFA)
- ARM/Raspberry Pi
- Network Connection Modes
- Portainer
- Unraid
- Home Assistant
- Homebridge Camera FFmpeg
- HomeKit Secure Video
- WebUI API
If your email or password contains a %
or $
character, you may need to escape them with an extra character. e.g., pa$$word
should be entered as pa$$$$word
The bridge features a basic Web-UI which can display a preview of all your cameras as well as direct links to all the video streams.
The web-ui can be accessed on the default port 5000
:
http://localhost:5000/
See also:
WebRTC should work automatically in Home Assistant mode, however, some additional configuration is required to get WebRTC working in the standard docker mode.
-
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
-
See documentation for additional information/options.
WYZE_EMAIL and WYZE_PASSWORD are the only two required environment variables.
- Audio
- Bitrate and Resolution
- Camera Substreams
- MQTT Configuration
- Filtering Cameras
- Doorbell/Camera Rotation
- Custom FFmpeg Commands
- Interval Snapshots
- Stream Recording and Livestreaming
- rtsp-simple-server/MediaMTX Config
- Offline/IFTTT Webhook
- Proxy Stream from RTSP Firmware
- BOA HTTP Server/Motion Alerts
- Debugging Options