├── .gitignore ├── README.md ├── ScreenFlow.gif ├── client.js ├── haarcascade_frontalface_alt.xml ├── index.html ├── main.py └── wu.png /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsonglew/webrtc-stream/HEAD/README.md -------------------------------------------------------------------------------- /ScreenFlow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsonglew/webrtc-stream/HEAD/ScreenFlow.gif -------------------------------------------------------------------------------- /client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsonglew/webrtc-stream/HEAD/client.js -------------------------------------------------------------------------------- /haarcascade_frontalface_alt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsonglew/webrtc-stream/HEAD/haarcascade_frontalface_alt.xml -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsonglew/webrtc-stream/HEAD/index.html -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsonglew/webrtc-stream/HEAD/main.py -------------------------------------------------------------------------------- /wu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tsonglew/webrtc-stream/HEAD/wu.png --------------------------------------------------------------------------------