├── .gitignore ├── LICENSE ├── cv ├── Dockerfile ├── alwaysai.app.json ├── app.py └── requirements.txt ├── readme.md └── server ├── app.py ├── requirements.txt ├── static └── favicon.ico └── templates └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alwaysai/video-streamer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alwaysai/video-streamer/HEAD/LICENSE -------------------------------------------------------------------------------- /cv/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alwaysai/video-streamer/HEAD/cv/Dockerfile -------------------------------------------------------------------------------- /cv/alwaysai.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alwaysai/video-streamer/HEAD/cv/alwaysai.app.json -------------------------------------------------------------------------------- /cv/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alwaysai/video-streamer/HEAD/cv/app.py -------------------------------------------------------------------------------- /cv/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | websocket-client 3 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alwaysai/video-streamer/HEAD/readme.md -------------------------------------------------------------------------------- /server/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alwaysai/video-streamer/HEAD/server/app.py -------------------------------------------------------------------------------- /server/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alwaysai/video-streamer/HEAD/server/requirements.txt -------------------------------------------------------------------------------- /server/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alwaysai/video-streamer/HEAD/server/static/favicon.ico -------------------------------------------------------------------------------- /server/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alwaysai/video-streamer/HEAD/server/templates/index.html --------------------------------------------------------------------------------