├── .gitattributes ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── avgpcperformancedemo.gif ├── demo.gif ├── demo.mp4 ├── docs ├── demo.gif └── gui-demo.jpg ├── face_mapping.png ├── face_mapping2.png ├── face_mapping_result.gif ├── face_mapping_source.gif ├── instruction.png ├── models └── instructions.txt ├── modules ├── __init__.py ├── capturer.py ├── cluster_analysis.py ├── core.py ├── face_analyser.py ├── globals.py ├── metadata.py ├── predicter.py ├── processors │ ├── __init__.py │ └── frame │ │ ├── __init__.py │ │ ├── core.py │ │ ├── face_enhancer.py │ │ └── face_swapper.py ├── typing.py ├── ui.json ├── ui.py └── utilities.py ├── mypi.ini ├── readme ├── gumroad.png └── gumroad2.png ├── requirements.txt ├── resizable.gif ├── run-cuda.bat ├── run-laptop-gpu.bat ├── run.py ├── run_with_chocolatey.bat └── setup_deep_live_cam.bat /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/Deep-Live-Cam/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/Deep-Live-Cam/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/Deep-Live-Cam/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/Deep-Live-Cam/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/Deep-Live-Cam/HEAD/README.md -------------------------------------------------------------------------------- /avgpcperformancedemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/Deep-Live-Cam/HEAD/avgpcperformancedemo.gif -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/Deep-Live-Cam/HEAD/demo.gif -------------------------------------------------------------------------------- /demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/Deep-Live-Cam/HEAD/demo.mp4 -------------------------------------------------------------------------------- /docs/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/Deep-Live-Cam/HEAD/docs/demo.gif -------------------------------------------------------------------------------- /docs/gui-demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/Deep-Live-Cam/HEAD/docs/gui-demo.jpg -------------------------------------------------------------------------------- /face_mapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/Deep-Live-Cam/HEAD/face_mapping.png -------------------------------------------------------------------------------- /face_mapping2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/Deep-Live-Cam/HEAD/face_mapping2.png -------------------------------------------------------------------------------- /face_mapping_result.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/Deep-Live-Cam/HEAD/face_mapping_result.gif -------------------------------------------------------------------------------- /face_mapping_source.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/Deep-Live-Cam/HEAD/face_mapping_source.gif -------------------------------------------------------------------------------- /instruction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/Deep-Live-Cam/HEAD/instruction.png -------------------------------------------------------------------------------- /models/instructions.txt: -------------------------------------------------------------------------------- 1 | just put the models in this folder -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/capturer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/Deep-Live-Cam/HEAD/modules/capturer.py -------------------------------------------------------------------------------- /modules/cluster_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/Deep-Live-Cam/HEAD/modules/cluster_analysis.py -------------------------------------------------------------------------------- /modules/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/Deep-Live-Cam/HEAD/modules/core.py -------------------------------------------------------------------------------- /modules/face_analyser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/Deep-Live-Cam/HEAD/modules/face_analyser.py -------------------------------------------------------------------------------- /modules/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/Deep-Live-Cam/HEAD/modules/globals.py -------------------------------------------------------------------------------- /modules/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/Deep-Live-Cam/HEAD/modules/metadata.py -------------------------------------------------------------------------------- /modules/predicter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/Deep-Live-Cam/HEAD/modules/predicter.py -------------------------------------------------------------------------------- /modules/processors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/processors/frame/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/processors/frame/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/Deep-Live-Cam/HEAD/modules/processors/frame/core.py -------------------------------------------------------------------------------- /modules/processors/frame/face_enhancer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/Deep-Live-Cam/HEAD/modules/processors/frame/face_enhancer.py -------------------------------------------------------------------------------- /modules/processors/frame/face_swapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/Deep-Live-Cam/HEAD/modules/processors/frame/face_swapper.py -------------------------------------------------------------------------------- /modules/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/Deep-Live-Cam/HEAD/modules/typing.py -------------------------------------------------------------------------------- /modules/ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/Deep-Live-Cam/HEAD/modules/ui.json -------------------------------------------------------------------------------- /modules/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/Deep-Live-Cam/HEAD/modules/ui.py -------------------------------------------------------------------------------- /modules/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/Deep-Live-Cam/HEAD/modules/utilities.py -------------------------------------------------------------------------------- /mypi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/Deep-Live-Cam/HEAD/mypi.ini -------------------------------------------------------------------------------- /readme/gumroad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/Deep-Live-Cam/HEAD/readme/gumroad.png -------------------------------------------------------------------------------- /readme/gumroad2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/Deep-Live-Cam/HEAD/readme/gumroad2.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/Deep-Live-Cam/HEAD/requirements.txt -------------------------------------------------------------------------------- /resizable.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/Deep-Live-Cam/HEAD/resizable.gif -------------------------------------------------------------------------------- /run-cuda.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/Deep-Live-Cam/HEAD/run-cuda.bat -------------------------------------------------------------------------------- /run-laptop-gpu.bat: -------------------------------------------------------------------------------- 1 | python run.py --execution-provider dml -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/Deep-Live-Cam/HEAD/run.py -------------------------------------------------------------------------------- /run_with_chocolatey.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/Deep-Live-Cam/HEAD/run_with_chocolatey.bat -------------------------------------------------------------------------------- /setup_deep_live_cam.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UberGuidoZ/Deep-Live-Cam/HEAD/setup_deep_live_cam.bat --------------------------------------------------------------------------------