├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── audio.py ├── checkpoints └── README.md ├── cog.yaml ├── color_syncnet_train.py ├── evaluation ├── README.md ├── gen_videos_from_filelist.py ├── real_videos_inference.py ├── scores_LSE │ ├── SyncNetInstance_calc_scores.py │ ├── calculate_scores_LRS.py │ ├── calculate_scores_real_videos.py │ └── calculate_scores_real_videos.sh └── test_filelists │ ├── README.md │ ├── ReSyncED │ ├── random_pairs.txt │ └── tts_pairs.txt │ ├── lrs2.txt │ ├── lrs3.txt │ └── lrw.txt ├── face_detect.py ├── face_detection ├── README.md ├── __init__.py ├── api.py ├── detection │ ├── __init__.py │ ├── core.py │ └── sfd │ │ ├── __init__.py │ │ ├── bbox.py │ │ ├── detect.py │ │ ├── net_s3fd.py │ │ └── sfd_detector.py ├── models.py └── utils.py ├── filelists └── README.md ├── hparams.py ├── hq_wav2lip_train.py ├── inference.py ├── models ├── __init__.py ├── conv.py ├── syncnet.py └── wav2lip.py ├── predict.py ├── preprocess.py ├── requirements.txt ├── results └── README.md ├── scripts ├── download_models.sh ├── run-dev.sh └── run-prod.sh ├── temp └── README.md └── wav2lip_train.py /.dockerignore: -------------------------------------------------------------------------------- 1 | checkpoints/ -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/README.md -------------------------------------------------------------------------------- /audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/audio.py -------------------------------------------------------------------------------- /checkpoints/README.md: -------------------------------------------------------------------------------- 1 | Place all your checkpoints (.pth files) here. -------------------------------------------------------------------------------- /cog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/cog.yaml -------------------------------------------------------------------------------- /color_syncnet_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/color_syncnet_train.py -------------------------------------------------------------------------------- /evaluation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/evaluation/README.md -------------------------------------------------------------------------------- /evaluation/gen_videos_from_filelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/evaluation/gen_videos_from_filelist.py -------------------------------------------------------------------------------- /evaluation/real_videos_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/evaluation/real_videos_inference.py -------------------------------------------------------------------------------- /evaluation/scores_LSE/SyncNetInstance_calc_scores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/evaluation/scores_LSE/SyncNetInstance_calc_scores.py -------------------------------------------------------------------------------- /evaluation/scores_LSE/calculate_scores_LRS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/evaluation/scores_LSE/calculate_scores_LRS.py -------------------------------------------------------------------------------- /evaluation/scores_LSE/calculate_scores_real_videos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/evaluation/scores_LSE/calculate_scores_real_videos.py -------------------------------------------------------------------------------- /evaluation/scores_LSE/calculate_scores_real_videos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/evaluation/scores_LSE/calculate_scores_real_videos.sh -------------------------------------------------------------------------------- /evaluation/test_filelists/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/evaluation/test_filelists/README.md -------------------------------------------------------------------------------- /evaluation/test_filelists/ReSyncED/random_pairs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/evaluation/test_filelists/ReSyncED/random_pairs.txt -------------------------------------------------------------------------------- /evaluation/test_filelists/ReSyncED/tts_pairs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/evaluation/test_filelists/ReSyncED/tts_pairs.txt -------------------------------------------------------------------------------- /evaluation/test_filelists/lrs2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/evaluation/test_filelists/lrs2.txt -------------------------------------------------------------------------------- /evaluation/test_filelists/lrs3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/evaluation/test_filelists/lrs3.txt -------------------------------------------------------------------------------- /evaluation/test_filelists/lrw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/evaluation/test_filelists/lrw.txt -------------------------------------------------------------------------------- /face_detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/face_detect.py -------------------------------------------------------------------------------- /face_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/face_detection/README.md -------------------------------------------------------------------------------- /face_detection/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/face_detection/__init__.py -------------------------------------------------------------------------------- /face_detection/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/face_detection/api.py -------------------------------------------------------------------------------- /face_detection/detection/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import FaceDetector -------------------------------------------------------------------------------- /face_detection/detection/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/face_detection/detection/core.py -------------------------------------------------------------------------------- /face_detection/detection/sfd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/face_detection/detection/sfd/__init__.py -------------------------------------------------------------------------------- /face_detection/detection/sfd/bbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/face_detection/detection/sfd/bbox.py -------------------------------------------------------------------------------- /face_detection/detection/sfd/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/face_detection/detection/sfd/detect.py -------------------------------------------------------------------------------- /face_detection/detection/sfd/net_s3fd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/face_detection/detection/sfd/net_s3fd.py -------------------------------------------------------------------------------- /face_detection/detection/sfd/sfd_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/face_detection/detection/sfd/sfd_detector.py -------------------------------------------------------------------------------- /face_detection/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/face_detection/models.py -------------------------------------------------------------------------------- /face_detection/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/face_detection/utils.py -------------------------------------------------------------------------------- /filelists/README.md: -------------------------------------------------------------------------------- 1 | Place LRS2 (and any other) filelists here for training. -------------------------------------------------------------------------------- /hparams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/hparams.py -------------------------------------------------------------------------------- /hq_wav2lip_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/hq_wav2lip_train.py -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/inference.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/models/conv.py -------------------------------------------------------------------------------- /models/syncnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/models/syncnet.py -------------------------------------------------------------------------------- /models/wav2lip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/models/wav2lip.py -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/predict.py -------------------------------------------------------------------------------- /preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/preprocess.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/requirements.txt -------------------------------------------------------------------------------- /results/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/results/README.md -------------------------------------------------------------------------------- /scripts/download_models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/scripts/download_models.sh -------------------------------------------------------------------------------- /scripts/run-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/scripts/run-dev.sh -------------------------------------------------------------------------------- /scripts/run-prod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/scripts/run-prod.sh -------------------------------------------------------------------------------- /temp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/temp/README.md -------------------------------------------------------------------------------- /wav2lip_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devxpy/cog-Wav2Lip/HEAD/wav2lip_train.py --------------------------------------------------------------------------------