├── .gitignore ├── GFPGAN-master ├── .github │ └── workflows │ │ ├── no-response.yml │ │ ├── publish-pip.yml │ │ ├── pylint.yml │ │ └── release.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .vscode │ └── settings.json ├── CODE_OF_CONDUCT.md ├── Comparisons.md ├── FAQ.md ├── LICENSE ├── MANIFEST.in ├── PaperModel.md ├── README.md ├── README_CN.md ├── VERSION ├── assets │ └── gfpgan_logo.png ├── cog.yaml ├── cog_predict.py ├── gfpgan │ ├── __init__.py │ ├── archs │ │ ├── __init__.py │ │ ├── arcface_arch.py │ │ ├── gfpgan_bilinear_arch.py │ │ ├── gfpganv1_arch.py │ │ ├── gfpganv1_clean_arch.py │ │ ├── restoreformer_arch.py │ │ ├── stylegan2_bilinear_arch.py │ │ └── stylegan2_clean_arch.py │ ├── data │ │ ├── __init__.py │ │ └── ffhq_degradation_dataset.py │ ├── models │ │ ├── __init__.py │ │ └── gfpgan_model.py │ ├── train.py │ ├── utils.py │ └── weights │ │ └── README.md ├── inference_gfpgan.py ├── inputs │ ├── cropped_faces │ │ ├── Adele_crop.png │ │ ├── Julia_Roberts_crop.png │ │ ├── Justin_Timberlake_crop.png │ │ └── Paris_Hilton_crop.png │ └── whole_imgs │ │ ├── 00.jpg │ │ ├── 10045.png │ │ └── Blake_Lively.jpg ├── options │ ├── train_gfpgan_v1.yml │ └── train_gfpgan_v1_simple.yml ├── requirements.txt ├── scripts │ ├── convert_gfpganv_to_clean.py │ └── parse_landmark.py ├── setup.cfg ├── setup.py └── tests │ ├── data │ ├── ffhq_gt.lmdb │ │ ├── data.mdb │ │ ├── lock.mdb │ │ └── meta_info.txt │ ├── gt │ │ └── 00000000.png │ ├── test_eye_mouth_landmarks.pth │ ├── test_ffhq_degradation_dataset.yml │ └── test_gfpgan_model.yml │ ├── test_arcface_arch.py │ ├── test_ffhq_degradation_dataset.py │ ├── test_gfpgan_arch.py │ ├── test_gfpgan_model.py │ ├── test_stylegan2_clean_arch.py │ └── test_utils.py ├── README.md ├── Wav2Lip-GFPGAN.ipynb ├── Wav2Lip-master ├── .gitignore ├── 0.2.3 ├── 1.3.4.0 ├── README.md ├── audio.py ├── checkpoints │ └── README.md ├── 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 ├── 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 ├── preprocess.py ├── requirements.txt ├── results │ └── README.md ├── temp │ └── README.md └── wav2lip_train.py ├── img └── 流程图.svg ├── references.txt ├── requirements.txt └── run.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/.gitignore -------------------------------------------------------------------------------- /GFPGAN-master/.github/workflows/no-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/.github/workflows/no-response.yml -------------------------------------------------------------------------------- /GFPGAN-master/.github/workflows/publish-pip.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/.github/workflows/publish-pip.yml -------------------------------------------------------------------------------- /GFPGAN-master/.github/workflows/pylint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/.github/workflows/pylint.yml -------------------------------------------------------------------------------- /GFPGAN-master/.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/.github/workflows/release.yml -------------------------------------------------------------------------------- /GFPGAN-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/.gitignore -------------------------------------------------------------------------------- /GFPGAN-master/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/.pre-commit-config.yaml -------------------------------------------------------------------------------- /GFPGAN-master/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/.vscode/settings.json -------------------------------------------------------------------------------- /GFPGAN-master/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /GFPGAN-master/Comparisons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/Comparisons.md -------------------------------------------------------------------------------- /GFPGAN-master/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/FAQ.md -------------------------------------------------------------------------------- /GFPGAN-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/LICENSE -------------------------------------------------------------------------------- /GFPGAN-master/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/MANIFEST.in -------------------------------------------------------------------------------- /GFPGAN-master/PaperModel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/PaperModel.md -------------------------------------------------------------------------------- /GFPGAN-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/README.md -------------------------------------------------------------------------------- /GFPGAN-master/README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/README_CN.md -------------------------------------------------------------------------------- /GFPGAN-master/VERSION: -------------------------------------------------------------------------------- 1 | 1.3.8 2 | -------------------------------------------------------------------------------- /GFPGAN-master/assets/gfpgan_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/assets/gfpgan_logo.png -------------------------------------------------------------------------------- /GFPGAN-master/cog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/cog.yaml -------------------------------------------------------------------------------- /GFPGAN-master/cog_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/cog_predict.py -------------------------------------------------------------------------------- /GFPGAN-master/gfpgan/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/gfpgan/__init__.py -------------------------------------------------------------------------------- /GFPGAN-master/gfpgan/archs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/gfpgan/archs/__init__.py -------------------------------------------------------------------------------- /GFPGAN-master/gfpgan/archs/arcface_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/gfpgan/archs/arcface_arch.py -------------------------------------------------------------------------------- /GFPGAN-master/gfpgan/archs/gfpgan_bilinear_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/gfpgan/archs/gfpgan_bilinear_arch.py -------------------------------------------------------------------------------- /GFPGAN-master/gfpgan/archs/gfpganv1_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/gfpgan/archs/gfpganv1_arch.py -------------------------------------------------------------------------------- /GFPGAN-master/gfpgan/archs/gfpganv1_clean_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/gfpgan/archs/gfpganv1_clean_arch.py -------------------------------------------------------------------------------- /GFPGAN-master/gfpgan/archs/restoreformer_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/gfpgan/archs/restoreformer_arch.py -------------------------------------------------------------------------------- /GFPGAN-master/gfpgan/archs/stylegan2_bilinear_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/gfpgan/archs/stylegan2_bilinear_arch.py -------------------------------------------------------------------------------- /GFPGAN-master/gfpgan/archs/stylegan2_clean_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/gfpgan/archs/stylegan2_clean_arch.py -------------------------------------------------------------------------------- /GFPGAN-master/gfpgan/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/gfpgan/data/__init__.py -------------------------------------------------------------------------------- /GFPGAN-master/gfpgan/data/ffhq_degradation_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/gfpgan/data/ffhq_degradation_dataset.py -------------------------------------------------------------------------------- /GFPGAN-master/gfpgan/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/gfpgan/models/__init__.py -------------------------------------------------------------------------------- /GFPGAN-master/gfpgan/models/gfpgan_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/gfpgan/models/gfpgan_model.py -------------------------------------------------------------------------------- /GFPGAN-master/gfpgan/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/gfpgan/train.py -------------------------------------------------------------------------------- /GFPGAN-master/gfpgan/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/gfpgan/utils.py -------------------------------------------------------------------------------- /GFPGAN-master/gfpgan/weights/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/gfpgan/weights/README.md -------------------------------------------------------------------------------- /GFPGAN-master/inference_gfpgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/inference_gfpgan.py -------------------------------------------------------------------------------- /GFPGAN-master/inputs/cropped_faces/Adele_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/inputs/cropped_faces/Adele_crop.png -------------------------------------------------------------------------------- /GFPGAN-master/inputs/cropped_faces/Julia_Roberts_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/inputs/cropped_faces/Julia_Roberts_crop.png -------------------------------------------------------------------------------- /GFPGAN-master/inputs/cropped_faces/Justin_Timberlake_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/inputs/cropped_faces/Justin_Timberlake_crop.png -------------------------------------------------------------------------------- /GFPGAN-master/inputs/cropped_faces/Paris_Hilton_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/inputs/cropped_faces/Paris_Hilton_crop.png -------------------------------------------------------------------------------- /GFPGAN-master/inputs/whole_imgs/00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/inputs/whole_imgs/00.jpg -------------------------------------------------------------------------------- /GFPGAN-master/inputs/whole_imgs/10045.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/inputs/whole_imgs/10045.png -------------------------------------------------------------------------------- /GFPGAN-master/inputs/whole_imgs/Blake_Lively.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/inputs/whole_imgs/Blake_Lively.jpg -------------------------------------------------------------------------------- /GFPGAN-master/options/train_gfpgan_v1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/options/train_gfpgan_v1.yml -------------------------------------------------------------------------------- /GFPGAN-master/options/train_gfpgan_v1_simple.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/options/train_gfpgan_v1_simple.yml -------------------------------------------------------------------------------- /GFPGAN-master/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/requirements.txt -------------------------------------------------------------------------------- /GFPGAN-master/scripts/convert_gfpganv_to_clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/scripts/convert_gfpganv_to_clean.py -------------------------------------------------------------------------------- /GFPGAN-master/scripts/parse_landmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/scripts/parse_landmark.py -------------------------------------------------------------------------------- /GFPGAN-master/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/setup.cfg -------------------------------------------------------------------------------- /GFPGAN-master/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/setup.py -------------------------------------------------------------------------------- /GFPGAN-master/tests/data/ffhq_gt.lmdb/data.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/tests/data/ffhq_gt.lmdb/data.mdb -------------------------------------------------------------------------------- /GFPGAN-master/tests/data/ffhq_gt.lmdb/lock.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/tests/data/ffhq_gt.lmdb/lock.mdb -------------------------------------------------------------------------------- /GFPGAN-master/tests/data/ffhq_gt.lmdb/meta_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/tests/data/ffhq_gt.lmdb/meta_info.txt -------------------------------------------------------------------------------- /GFPGAN-master/tests/data/gt/00000000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/tests/data/gt/00000000.png -------------------------------------------------------------------------------- /GFPGAN-master/tests/data/test_eye_mouth_landmarks.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/tests/data/test_eye_mouth_landmarks.pth -------------------------------------------------------------------------------- /GFPGAN-master/tests/data/test_ffhq_degradation_dataset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/tests/data/test_ffhq_degradation_dataset.yml -------------------------------------------------------------------------------- /GFPGAN-master/tests/data/test_gfpgan_model.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/tests/data/test_gfpgan_model.yml -------------------------------------------------------------------------------- /GFPGAN-master/tests/test_arcface_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/tests/test_arcface_arch.py -------------------------------------------------------------------------------- /GFPGAN-master/tests/test_ffhq_degradation_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/tests/test_ffhq_degradation_dataset.py -------------------------------------------------------------------------------- /GFPGAN-master/tests/test_gfpgan_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/tests/test_gfpgan_arch.py -------------------------------------------------------------------------------- /GFPGAN-master/tests/test_gfpgan_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/tests/test_gfpgan_model.py -------------------------------------------------------------------------------- /GFPGAN-master/tests/test_stylegan2_clean_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/tests/test_stylegan2_clean_arch.py -------------------------------------------------------------------------------- /GFPGAN-master/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/GFPGAN-master/tests/test_utils.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/README.md -------------------------------------------------------------------------------- /Wav2Lip-GFPGAN.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-GFPGAN.ipynb -------------------------------------------------------------------------------- /Wav2Lip-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/.gitignore -------------------------------------------------------------------------------- /Wav2Lip-master/0.2.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/0.2.3 -------------------------------------------------------------------------------- /Wav2Lip-master/1.3.4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/1.3.4.0 -------------------------------------------------------------------------------- /Wav2Lip-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/README.md -------------------------------------------------------------------------------- /Wav2Lip-master/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/audio.py -------------------------------------------------------------------------------- /Wav2Lip-master/checkpoints/README.md: -------------------------------------------------------------------------------- 1 | Place all your checkpoints (.pth files) here. -------------------------------------------------------------------------------- /Wav2Lip-master/color_syncnet_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/color_syncnet_train.py -------------------------------------------------------------------------------- /Wav2Lip-master/evaluation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/evaluation/README.md -------------------------------------------------------------------------------- /Wav2Lip-master/evaluation/gen_videos_from_filelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/evaluation/gen_videos_from_filelist.py -------------------------------------------------------------------------------- /Wav2Lip-master/evaluation/real_videos_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/evaluation/real_videos_inference.py -------------------------------------------------------------------------------- /Wav2Lip-master/evaluation/scores_LSE/SyncNetInstance_calc_scores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/evaluation/scores_LSE/SyncNetInstance_calc_scores.py -------------------------------------------------------------------------------- /Wav2Lip-master/evaluation/scores_LSE/calculate_scores_LRS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/evaluation/scores_LSE/calculate_scores_LRS.py -------------------------------------------------------------------------------- /Wav2Lip-master/evaluation/scores_LSE/calculate_scores_real_videos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/evaluation/scores_LSE/calculate_scores_real_videos.py -------------------------------------------------------------------------------- /Wav2Lip-master/evaluation/scores_LSE/calculate_scores_real_videos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/evaluation/scores_LSE/calculate_scores_real_videos.sh -------------------------------------------------------------------------------- /Wav2Lip-master/evaluation/test_filelists/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/evaluation/test_filelists/README.md -------------------------------------------------------------------------------- /Wav2Lip-master/evaluation/test_filelists/ReSyncED/random_pairs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/evaluation/test_filelists/ReSyncED/random_pairs.txt -------------------------------------------------------------------------------- /Wav2Lip-master/evaluation/test_filelists/ReSyncED/tts_pairs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/evaluation/test_filelists/ReSyncED/tts_pairs.txt -------------------------------------------------------------------------------- /Wav2Lip-master/face_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/face_detection/README.md -------------------------------------------------------------------------------- /Wav2Lip-master/face_detection/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/face_detection/__init__.py -------------------------------------------------------------------------------- /Wav2Lip-master/face_detection/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/face_detection/api.py -------------------------------------------------------------------------------- /Wav2Lip-master/face_detection/detection/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import FaceDetector -------------------------------------------------------------------------------- /Wav2Lip-master/face_detection/detection/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/face_detection/detection/core.py -------------------------------------------------------------------------------- /Wav2Lip-master/face_detection/detection/sfd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/face_detection/detection/sfd/__init__.py -------------------------------------------------------------------------------- /Wav2Lip-master/face_detection/detection/sfd/bbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/face_detection/detection/sfd/bbox.py -------------------------------------------------------------------------------- /Wav2Lip-master/face_detection/detection/sfd/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/face_detection/detection/sfd/detect.py -------------------------------------------------------------------------------- /Wav2Lip-master/face_detection/detection/sfd/net_s3fd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/face_detection/detection/sfd/net_s3fd.py -------------------------------------------------------------------------------- /Wav2Lip-master/face_detection/detection/sfd/sfd_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/face_detection/detection/sfd/sfd_detector.py -------------------------------------------------------------------------------- /Wav2Lip-master/face_detection/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/face_detection/models.py -------------------------------------------------------------------------------- /Wav2Lip-master/face_detection/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/face_detection/utils.py -------------------------------------------------------------------------------- /Wav2Lip-master/filelists/README.md: -------------------------------------------------------------------------------- 1 | Place LRS2 (and any other) filelists here for training. -------------------------------------------------------------------------------- /Wav2Lip-master/hparams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/hparams.py -------------------------------------------------------------------------------- /Wav2Lip-master/hq_wav2lip_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/hq_wav2lip_train.py -------------------------------------------------------------------------------- /Wav2Lip-master/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/inference.py -------------------------------------------------------------------------------- /Wav2Lip-master/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/models/__init__.py -------------------------------------------------------------------------------- /Wav2Lip-master/models/conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/models/conv.py -------------------------------------------------------------------------------- /Wav2Lip-master/models/syncnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/models/syncnet.py -------------------------------------------------------------------------------- /Wav2Lip-master/models/wav2lip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/models/wav2lip.py -------------------------------------------------------------------------------- /Wav2Lip-master/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/preprocess.py -------------------------------------------------------------------------------- /Wav2Lip-master/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/requirements.txt -------------------------------------------------------------------------------- /Wav2Lip-master/results/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/results/README.md -------------------------------------------------------------------------------- /Wav2Lip-master/temp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/temp/README.md -------------------------------------------------------------------------------- /Wav2Lip-master/wav2lip_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/Wav2Lip-master/wav2lip_train.py -------------------------------------------------------------------------------- /img/流程图.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/img/流程图.svg -------------------------------------------------------------------------------- /references.txt: -------------------------------------------------------------------------------- 1 | https://www.youtube.com/watch?v=LQCQym6hVMo -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jecklianhuo/Wav2Lip-GFPGAN-main/HEAD/run.py --------------------------------------------------------------------------------