gitextract_f3ohuzxs/ ├── .gitignore ├── 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