├── .env ├── .github └── workflows │ └── push2hub.yml ├── Dockerfile ├── LICENSE ├── README.md ├── docker-compose.yml ├── main.py ├── sadtalker_default.jpeg └── src ├── GFPGANReconsitution.py ├── demo_onnx.py ├── facerender └── animate_onnx.py ├── noise_main.py ├── torch_onnx.py └── utils └── face_enhancer_deploy.py /.env: -------------------------------------------------------------------------------- 1 | VERSION = 0.1.3 -------------------------------------------------------------------------------- /.github/workflows/push2hub.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenwaytis/faster-SadTalker-API/HEAD/.github/workflows/push2hub.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenwaytis/faster-SadTalker-API/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenwaytis/faster-SadTalker-API/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenwaytis/faster-SadTalker-API/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenwaytis/faster-SadTalker-API/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenwaytis/faster-SadTalker-API/HEAD/main.py -------------------------------------------------------------------------------- /sadtalker_default.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenwaytis/faster-SadTalker-API/HEAD/sadtalker_default.jpeg -------------------------------------------------------------------------------- /src/GFPGANReconsitution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenwaytis/faster-SadTalker-API/HEAD/src/GFPGANReconsitution.py -------------------------------------------------------------------------------- /src/demo_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenwaytis/faster-SadTalker-API/HEAD/src/demo_onnx.py -------------------------------------------------------------------------------- /src/facerender/animate_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenwaytis/faster-SadTalker-API/HEAD/src/facerender/animate_onnx.py -------------------------------------------------------------------------------- /src/noise_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenwaytis/faster-SadTalker-API/HEAD/src/noise_main.py -------------------------------------------------------------------------------- /src/torch_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenwaytis/faster-SadTalker-API/HEAD/src/torch_onnx.py -------------------------------------------------------------------------------- /src/utils/face_enhancer_deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenwaytis/faster-SadTalker-API/HEAD/src/utils/face_enhancer_deploy.py --------------------------------------------------------------------------------