├── .idea ├── .gitignore ├── Wav2Lip-Ultra.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml └── script └── syncnet_python ├── .gitignore ├── LICENSE.md ├── README.md ├── SyncNetInstance.py ├── SyncNetModel.py ├── demo_feature.py ├── demo_syncnet.py ├── detectors ├── README.md ├── __init__.py └── s3fd │ ├── __init__.py │ ├── box_utils.py │ └── nets.py ├── download_model.sh ├── requirements.txt ├── run_pipeline.py ├── run_pipeline_dir.py ├── run_syncnet.py ├── run_syncnet_dir.py ├── run_visualise.py └── syncnet_videos.py /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kafeyun/Wav2Lip-Ultra/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/Wav2Lip-Ultra.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kafeyun/Wav2Lip-Ultra/HEAD/.idea/Wav2Lip-Ultra.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kafeyun/Wav2Lip-Ultra/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kafeyun/Wav2Lip-Ultra/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kafeyun/Wav2Lip-Ultra/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kafeyun/Wav2Lip-Ultra/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kafeyun/Wav2Lip-Ultra/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /script/syncnet_python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kafeyun/Wav2Lip-Ultra/HEAD/script/syncnet_python/.gitignore -------------------------------------------------------------------------------- /script/syncnet_python/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kafeyun/Wav2Lip-Ultra/HEAD/script/syncnet_python/LICENSE.md -------------------------------------------------------------------------------- /script/syncnet_python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kafeyun/Wav2Lip-Ultra/HEAD/script/syncnet_python/README.md -------------------------------------------------------------------------------- /script/syncnet_python/SyncNetInstance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kafeyun/Wav2Lip-Ultra/HEAD/script/syncnet_python/SyncNetInstance.py -------------------------------------------------------------------------------- /script/syncnet_python/SyncNetModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kafeyun/Wav2Lip-Ultra/HEAD/script/syncnet_python/SyncNetModel.py -------------------------------------------------------------------------------- /script/syncnet_python/demo_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kafeyun/Wav2Lip-Ultra/HEAD/script/syncnet_python/demo_feature.py -------------------------------------------------------------------------------- /script/syncnet_python/demo_syncnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kafeyun/Wav2Lip-Ultra/HEAD/script/syncnet_python/demo_syncnet.py -------------------------------------------------------------------------------- /script/syncnet_python/detectors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kafeyun/Wav2Lip-Ultra/HEAD/script/syncnet_python/detectors/README.md -------------------------------------------------------------------------------- /script/syncnet_python/detectors/__init__.py: -------------------------------------------------------------------------------- 1 | from .s3fd import S3FD -------------------------------------------------------------------------------- /script/syncnet_python/detectors/s3fd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kafeyun/Wav2Lip-Ultra/HEAD/script/syncnet_python/detectors/s3fd/__init__.py -------------------------------------------------------------------------------- /script/syncnet_python/detectors/s3fd/box_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kafeyun/Wav2Lip-Ultra/HEAD/script/syncnet_python/detectors/s3fd/box_utils.py -------------------------------------------------------------------------------- /script/syncnet_python/detectors/s3fd/nets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kafeyun/Wav2Lip-Ultra/HEAD/script/syncnet_python/detectors/s3fd/nets.py -------------------------------------------------------------------------------- /script/syncnet_python/download_model.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kafeyun/Wav2Lip-Ultra/HEAD/script/syncnet_python/download_model.sh -------------------------------------------------------------------------------- /script/syncnet_python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kafeyun/Wav2Lip-Ultra/HEAD/script/syncnet_python/requirements.txt -------------------------------------------------------------------------------- /script/syncnet_python/run_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kafeyun/Wav2Lip-Ultra/HEAD/script/syncnet_python/run_pipeline.py -------------------------------------------------------------------------------- /script/syncnet_python/run_pipeline_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kafeyun/Wav2Lip-Ultra/HEAD/script/syncnet_python/run_pipeline_dir.py -------------------------------------------------------------------------------- /script/syncnet_python/run_syncnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kafeyun/Wav2Lip-Ultra/HEAD/script/syncnet_python/run_syncnet.py -------------------------------------------------------------------------------- /script/syncnet_python/run_syncnet_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kafeyun/Wav2Lip-Ultra/HEAD/script/syncnet_python/run_syncnet_dir.py -------------------------------------------------------------------------------- /script/syncnet_python/run_visualise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kafeyun/Wav2Lip-Ultra/HEAD/script/syncnet_python/run_visualise.py -------------------------------------------------------------------------------- /script/syncnet_python/syncnet_videos.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------