Acts as a proxy between the proprietary communication standard of wyze cameras and exposes an mjpeg endpoint for you to use in other applications such as Blue Iris and Home Assistant
- Install Docker (dockerhub repo)
- Run
docker pull dennisgarvey/wyzeproxy:0.1
- Run container with
docker run -p 80:5000 -e WYZE_EMAIL="YOUR EMAIL HERE" -e WYZE_PASSWORD="YOUR WYZE PASSWORD" dennisgarvey/wyzeproxy:0.1
- All the cameras associated with the account are exposed at the url
/cam/<index>
, for instance a url might look likehttp://192.168.1.2/cam/0
- This currently performs pretty poorly due to it decoding and re-encoding the streams
- I put this together pretty quickly, so it lacks certain features such as audio and RTSP as well as improved performance, which may be added later.