├── .github └── workflows │ └── deploy.yml ├── 1.html ├── README.md ├── Routes ├── __init__.py ├── plugin │ ├── __init__.py │ ├── index.html │ ├── index.py │ ├── logs.py │ └── offer.py └── utils │ └── cors.py ├── VideoTransformTrack ├── __init__.py └── plugin │ ├── __init__.py │ ├── cartoon.py │ ├── converter.py │ ├── edges.py │ ├── inFrame.py │ ├── rotate.py │ └── transform.py ├── docker-compose.yaml ├── dockerfile ├── log.txt ├── main.py └── requirements.txt /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/AI-WEBRTC-PYTHON/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/AI-WEBRTC-PYTHON/HEAD/1.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # WEBRTC 2 | -------------------------------------------------------------------------------- /Routes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/AI-WEBRTC-PYTHON/HEAD/Routes/__init__.py -------------------------------------------------------------------------------- /Routes/plugin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/AI-WEBRTC-PYTHON/HEAD/Routes/plugin/__init__.py -------------------------------------------------------------------------------- /Routes/plugin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/AI-WEBRTC-PYTHON/HEAD/Routes/plugin/index.html -------------------------------------------------------------------------------- /Routes/plugin/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/AI-WEBRTC-PYTHON/HEAD/Routes/plugin/index.py -------------------------------------------------------------------------------- /Routes/plugin/logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/AI-WEBRTC-PYTHON/HEAD/Routes/plugin/logs.py -------------------------------------------------------------------------------- /Routes/plugin/offer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/AI-WEBRTC-PYTHON/HEAD/Routes/plugin/offer.py -------------------------------------------------------------------------------- /Routes/utils/cors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/AI-WEBRTC-PYTHON/HEAD/Routes/utils/cors.py -------------------------------------------------------------------------------- /VideoTransformTrack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/AI-WEBRTC-PYTHON/HEAD/VideoTransformTrack/__init__.py -------------------------------------------------------------------------------- /VideoTransformTrack/plugin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/AI-WEBRTC-PYTHON/HEAD/VideoTransformTrack/plugin/__init__.py -------------------------------------------------------------------------------- /VideoTransformTrack/plugin/cartoon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/AI-WEBRTC-PYTHON/HEAD/VideoTransformTrack/plugin/cartoon.py -------------------------------------------------------------------------------- /VideoTransformTrack/plugin/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/AI-WEBRTC-PYTHON/HEAD/VideoTransformTrack/plugin/converter.py -------------------------------------------------------------------------------- /VideoTransformTrack/plugin/edges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/AI-WEBRTC-PYTHON/HEAD/VideoTransformTrack/plugin/edges.py -------------------------------------------------------------------------------- /VideoTransformTrack/plugin/inFrame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/AI-WEBRTC-PYTHON/HEAD/VideoTransformTrack/plugin/inFrame.py -------------------------------------------------------------------------------- /VideoTransformTrack/plugin/rotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/AI-WEBRTC-PYTHON/HEAD/VideoTransformTrack/plugin/rotate.py -------------------------------------------------------------------------------- /VideoTransformTrack/plugin/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/AI-WEBRTC-PYTHON/HEAD/VideoTransformTrack/plugin/transform.py -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/AI-WEBRTC-PYTHON/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/AI-WEBRTC-PYTHON/HEAD/dockerfile -------------------------------------------------------------------------------- /log.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/AI-WEBRTC-PYTHON/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IshanSingla/AI-WEBRTC-PYTHON/HEAD/requirements.txt --------------------------------------------------------------------------------