├── LICENSE ├── README.md ├── assets ├── test5_demo.gif └── test5_facial_dubbing_add_audio.mov ├── audio.py ├── checkpoints └── README.md ├── 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 ├── filelist ├── test.txt └── train.txt ├── filelists └── README.md ├── hparams.py ├── hq_wav2lip_sam_train.py ├── hq_wav2lip_train.py ├── inference.py ├── models ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── conv.cpython-36.pyc │ ├── conv2.cpython-36.pyc │ ├── syncnet.cpython-36.pyc │ ├── syncnet.py │ ├── syncnetv2.cpython-36.pyc │ ├── wav2lip.cpython-36.pyc │ └── wav2lipv2.cpython-36.pyc ├── conv.py ├── sam.py ├── syncnet.py ├── syncnetv2.py ├── vqdisc.py ├── wav2lip.py ├── wav2lip_512.py └── wav2lipv2.py ├── preprocess.py ├── requirements.txt ├── results └── README.md ├── temp └── README.md ├── train_syncnet_sam.py ├── wav2lip_train.py └── wloss_hq_wav2lip_train.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/README.md -------------------------------------------------------------------------------- /assets/test5_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/assets/test5_demo.gif -------------------------------------------------------------------------------- /assets/test5_facial_dubbing_add_audio.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/assets/test5_facial_dubbing_add_audio.mov -------------------------------------------------------------------------------- /audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/audio.py -------------------------------------------------------------------------------- /checkpoints/README.md: -------------------------------------------------------------------------------- 1 | Place all your checkpoints (.pth files) here. -------------------------------------------------------------------------------- /evaluation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/evaluation/README.md -------------------------------------------------------------------------------- /evaluation/gen_videos_from_filelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/evaluation/gen_videos_from_filelist.py -------------------------------------------------------------------------------- /evaluation/real_videos_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/evaluation/real_videos_inference.py -------------------------------------------------------------------------------- /evaluation/scores_LSE/SyncNetInstance_calc_scores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/evaluation/scores_LSE/SyncNetInstance_calc_scores.py -------------------------------------------------------------------------------- /evaluation/scores_LSE/calculate_scores_LRS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/evaluation/scores_LSE/calculate_scores_LRS.py -------------------------------------------------------------------------------- /evaluation/scores_LSE/calculate_scores_real_videos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/evaluation/scores_LSE/calculate_scores_real_videos.py -------------------------------------------------------------------------------- /evaluation/scores_LSE/calculate_scores_real_videos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/evaluation/scores_LSE/calculate_scores_real_videos.sh -------------------------------------------------------------------------------- /evaluation/test_filelists/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/evaluation/test_filelists/README.md -------------------------------------------------------------------------------- /evaluation/test_filelists/ReSyncED/random_pairs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/evaluation/test_filelists/ReSyncED/random_pairs.txt -------------------------------------------------------------------------------- /evaluation/test_filelists/ReSyncED/tts_pairs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/evaluation/test_filelists/ReSyncED/tts_pairs.txt -------------------------------------------------------------------------------- /evaluation/test_filelists/lrs2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/evaluation/test_filelists/lrs2.txt -------------------------------------------------------------------------------- /evaluation/test_filelists/lrs3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/evaluation/test_filelists/lrs3.txt -------------------------------------------------------------------------------- /evaluation/test_filelists/lrw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/evaluation/test_filelists/lrw.txt -------------------------------------------------------------------------------- /filelist/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/filelist/test.txt -------------------------------------------------------------------------------- /filelist/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/filelist/train.txt -------------------------------------------------------------------------------- /filelists/README.md: -------------------------------------------------------------------------------- 1 | Place LRS2 (and any other) filelists here for training. -------------------------------------------------------------------------------- /hparams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/hparams.py -------------------------------------------------------------------------------- /hq_wav2lip_sam_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/hq_wav2lip_sam_train.py -------------------------------------------------------------------------------- /hq_wav2lip_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/hq_wav2lip_train.py -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/inference.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/models/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/conv.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/models/__pycache__/conv.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/conv2.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/models/__pycache__/conv2.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/syncnet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/models/__pycache__/syncnet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/syncnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/models/__pycache__/syncnet.py -------------------------------------------------------------------------------- /models/__pycache__/syncnetv2.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/models/__pycache__/syncnetv2.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/wav2lip.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/models/__pycache__/wav2lip.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/wav2lipv2.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/models/__pycache__/wav2lipv2.cpython-36.pyc -------------------------------------------------------------------------------- /models/conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/models/conv.py -------------------------------------------------------------------------------- /models/sam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/models/sam.py -------------------------------------------------------------------------------- /models/syncnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/models/syncnet.py -------------------------------------------------------------------------------- /models/syncnetv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/models/syncnetv2.py -------------------------------------------------------------------------------- /models/vqdisc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/models/vqdisc.py -------------------------------------------------------------------------------- /models/wav2lip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/models/wav2lip.py -------------------------------------------------------------------------------- /models/wav2lip_512.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/models/wav2lip_512.py -------------------------------------------------------------------------------- /models/wav2lipv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/models/wav2lipv2.py -------------------------------------------------------------------------------- /preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/preprocess.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/requirements.txt -------------------------------------------------------------------------------- /results/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/results/README.md -------------------------------------------------------------------------------- /temp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/temp/README.md -------------------------------------------------------------------------------- /train_syncnet_sam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/train_syncnet_sam.py -------------------------------------------------------------------------------- /wav2lip_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/wav2lip_train.py -------------------------------------------------------------------------------- /wloss_hq_wav2lip_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primepake/wav2lip_288x288/HEAD/wloss_hq_wav2lip_train.py --------------------------------------------------------------------------------