├── .github ├── FUNDING.yml └── workflows │ └── sync-to-huggingface-gpu.yml ├── LICENSE ├── README.md ├── app.py ├── asserts ├── Place pretrained_lipsick.pth in this folder.txt ├── examples │ └── File.txt └── inference_result │ └── File.txt ├── compute_crop_radius.py ├── config └── config.py ├── environment.yml ├── inference.py ├── models ├── Discriminator.py ├── LipSick.py ├── Place shape_predictor_68_face_landmarks.dat in this folder.txt ├── Syncnet.py └── VGG19.py ├── run_lipsick.bat ├── sync_batchnorm ├── __init__.py ├── batchnorm.py ├── batchnorm_reimpl.py ├── comm.py ├── replicate.py └── unittest.py ├── updater.bat ├── utils ├── blend.py ├── common.py ├── data_processing.py ├── deep_speech.py ├── logo │ ├── LipSick.png │ ├── LipSickYouTube.jpg │ └── LipSick_bg.jpg ├── reference_frame.py └── temp │ └── do not delete.txt └── wheels └── dlib-19.22.99-cp310-cp310-win_amd64.whl /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inferencer/LipSick/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/sync-to-huggingface-gpu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inferencer/LipSick/HEAD/.github/workflows/sync-to-huggingface-gpu.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inferencer/LipSick/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inferencer/LipSick/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inferencer/LipSick/HEAD/app.py -------------------------------------------------------------------------------- /asserts/Place pretrained_lipsick.pth in this folder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inferencer/LipSick/HEAD/asserts/Place pretrained_lipsick.pth in this folder.txt -------------------------------------------------------------------------------- /asserts/examples/File.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inferencer/LipSick/HEAD/asserts/examples/File.txt -------------------------------------------------------------------------------- /asserts/inference_result/File.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inferencer/LipSick/HEAD/asserts/inference_result/File.txt -------------------------------------------------------------------------------- /compute_crop_radius.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inferencer/LipSick/HEAD/compute_crop_radius.py -------------------------------------------------------------------------------- /config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inferencer/LipSick/HEAD/config/config.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inferencer/LipSick/HEAD/environment.yml -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inferencer/LipSick/HEAD/inference.py -------------------------------------------------------------------------------- /models/Discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inferencer/LipSick/HEAD/models/Discriminator.py -------------------------------------------------------------------------------- /models/LipSick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inferencer/LipSick/HEAD/models/LipSick.py -------------------------------------------------------------------------------- /models/Place shape_predictor_68_face_landmarks.dat in this folder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inferencer/LipSick/HEAD/models/Place shape_predictor_68_face_landmarks.dat in this folder.txt -------------------------------------------------------------------------------- /models/Syncnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inferencer/LipSick/HEAD/models/Syncnet.py -------------------------------------------------------------------------------- /models/VGG19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inferencer/LipSick/HEAD/models/VGG19.py -------------------------------------------------------------------------------- /run_lipsick.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inferencer/LipSick/HEAD/run_lipsick.bat -------------------------------------------------------------------------------- /sync_batchnorm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inferencer/LipSick/HEAD/sync_batchnorm/__init__.py -------------------------------------------------------------------------------- /sync_batchnorm/batchnorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inferencer/LipSick/HEAD/sync_batchnorm/batchnorm.py -------------------------------------------------------------------------------- /sync_batchnorm/batchnorm_reimpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inferencer/LipSick/HEAD/sync_batchnorm/batchnorm_reimpl.py -------------------------------------------------------------------------------- /sync_batchnorm/comm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inferencer/LipSick/HEAD/sync_batchnorm/comm.py -------------------------------------------------------------------------------- /sync_batchnorm/replicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inferencer/LipSick/HEAD/sync_batchnorm/replicate.py -------------------------------------------------------------------------------- /sync_batchnorm/unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inferencer/LipSick/HEAD/sync_batchnorm/unittest.py -------------------------------------------------------------------------------- /updater.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | cd /d %~dp0 3 | git pull 4 | pause 5 | -------------------------------------------------------------------------------- /utils/blend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inferencer/LipSick/HEAD/utils/blend.py -------------------------------------------------------------------------------- /utils/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inferencer/LipSick/HEAD/utils/common.py -------------------------------------------------------------------------------- /utils/data_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inferencer/LipSick/HEAD/utils/data_processing.py -------------------------------------------------------------------------------- /utils/deep_speech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inferencer/LipSick/HEAD/utils/deep_speech.py -------------------------------------------------------------------------------- /utils/logo/LipSick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inferencer/LipSick/HEAD/utils/logo/LipSick.png -------------------------------------------------------------------------------- /utils/logo/LipSickYouTube.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inferencer/LipSick/HEAD/utils/logo/LipSickYouTube.jpg -------------------------------------------------------------------------------- /utils/logo/LipSick_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inferencer/LipSick/HEAD/utils/logo/LipSick_bg.jpg -------------------------------------------------------------------------------- /utils/reference_frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inferencer/LipSick/HEAD/utils/reference_frame.py -------------------------------------------------------------------------------- /utils/temp/do not delete.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inferencer/LipSick/HEAD/utils/temp/do not delete.txt -------------------------------------------------------------------------------- /wheels/dlib-19.22.99-cp310-cp310-win_amd64.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inferencer/LipSick/HEAD/wheels/dlib-19.22.99-cp310-cp310-win_amd64.whl --------------------------------------------------------------------------------