├── .gitattributes ├── .gitignore ├── .streamlit └── config.toml ├── README.md ├── app.py ├── avatars_images ├── avatar1.jpg ├── avatar2.jpg └── avatar3.png ├── packages.txt ├── requirements.txt └── wav2lip ├── audio.py ├── face_detection ├── README.md ├── __init__.py ├── api.py ├── detection │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ └── core.cpython-311.pyc │ ├── core.py │ └── sfd │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── bbox.cpython-311.pyc │ │ ├── detect.cpython-311.pyc │ │ ├── net_s3fd.cpython-311.pyc │ │ └── sfd_detector.cpython-311.pyc │ │ ├── bbox.py │ │ ├── detect.py │ │ ├── net_s3fd.py │ │ └── sfd_detector.py ├── models.py └── utils.py ├── hparams.py ├── inference.py ├── models ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-311.pyc │ ├── conv.cpython-311.pyc │ ├── syncnet.cpython-311.pyc │ └── wav2lip.cpython-311.pyc ├── conv.py ├── syncnet.py └── wav2lip.py ├── results └── README.md └── temp └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aml-Hassan-Abd-El-hamid/ai-lip-sync-app/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | sound.wav 2 | -------------------------------------------------------------------------------- /.streamlit/config.toml: -------------------------------------------------------------------------------- 1 | [theme] 2 | base="dark" 3 | primaryColor="#865bf1" 4 | font="monospace" -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aml-Hassan-Abd-El-hamid/ai-lip-sync-app/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aml-Hassan-Abd-El-hamid/ai-lip-sync-app/HEAD/app.py -------------------------------------------------------------------------------- /avatars_images/avatar1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aml-Hassan-Abd-El-hamid/ai-lip-sync-app/HEAD/avatars_images/avatar1.jpg -------------------------------------------------------------------------------- /avatars_images/avatar2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aml-Hassan-Abd-El-hamid/ai-lip-sync-app/HEAD/avatars_images/avatar2.jpg -------------------------------------------------------------------------------- /avatars_images/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aml-Hassan-Abd-El-hamid/ai-lip-sync-app/HEAD/avatars_images/avatar3.png -------------------------------------------------------------------------------- /packages.txt: -------------------------------------------------------------------------------- 1 | python3-opencv 2 | libgl1-mesa-dev 3 | ffmpeg 4 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aml-Hassan-Abd-El-hamid/ai-lip-sync-app/HEAD/requirements.txt -------------------------------------------------------------------------------- /wav2lip/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aml-Hassan-Abd-El-hamid/ai-lip-sync-app/HEAD/wav2lip/audio.py -------------------------------------------------------------------------------- /wav2lip/face_detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aml-Hassan-Abd-El-hamid/ai-lip-sync-app/HEAD/wav2lip/face_detection/README.md -------------------------------------------------------------------------------- /wav2lip/face_detection/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aml-Hassan-Abd-El-hamid/ai-lip-sync-app/HEAD/wav2lip/face_detection/__init__.py -------------------------------------------------------------------------------- /wav2lip/face_detection/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aml-Hassan-Abd-El-hamid/ai-lip-sync-app/HEAD/wav2lip/face_detection/api.py -------------------------------------------------------------------------------- /wav2lip/face_detection/detection/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import FaceDetector -------------------------------------------------------------------------------- /wav2lip/face_detection/detection/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aml-Hassan-Abd-El-hamid/ai-lip-sync-app/HEAD/wav2lip/face_detection/detection/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /wav2lip/face_detection/detection/__pycache__/core.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aml-Hassan-Abd-El-hamid/ai-lip-sync-app/HEAD/wav2lip/face_detection/detection/__pycache__/core.cpython-311.pyc -------------------------------------------------------------------------------- /wav2lip/face_detection/detection/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aml-Hassan-Abd-El-hamid/ai-lip-sync-app/HEAD/wav2lip/face_detection/detection/core.py -------------------------------------------------------------------------------- /wav2lip/face_detection/detection/sfd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aml-Hassan-Abd-El-hamid/ai-lip-sync-app/HEAD/wav2lip/face_detection/detection/sfd/__init__.py -------------------------------------------------------------------------------- /wav2lip/face_detection/detection/sfd/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aml-Hassan-Abd-El-hamid/ai-lip-sync-app/HEAD/wav2lip/face_detection/detection/sfd/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /wav2lip/face_detection/detection/sfd/__pycache__/bbox.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aml-Hassan-Abd-El-hamid/ai-lip-sync-app/HEAD/wav2lip/face_detection/detection/sfd/__pycache__/bbox.cpython-311.pyc -------------------------------------------------------------------------------- /wav2lip/face_detection/detection/sfd/__pycache__/detect.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aml-Hassan-Abd-El-hamid/ai-lip-sync-app/HEAD/wav2lip/face_detection/detection/sfd/__pycache__/detect.cpython-311.pyc -------------------------------------------------------------------------------- /wav2lip/face_detection/detection/sfd/__pycache__/net_s3fd.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aml-Hassan-Abd-El-hamid/ai-lip-sync-app/HEAD/wav2lip/face_detection/detection/sfd/__pycache__/net_s3fd.cpython-311.pyc -------------------------------------------------------------------------------- /wav2lip/face_detection/detection/sfd/__pycache__/sfd_detector.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aml-Hassan-Abd-El-hamid/ai-lip-sync-app/HEAD/wav2lip/face_detection/detection/sfd/__pycache__/sfd_detector.cpython-311.pyc -------------------------------------------------------------------------------- /wav2lip/face_detection/detection/sfd/bbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aml-Hassan-Abd-El-hamid/ai-lip-sync-app/HEAD/wav2lip/face_detection/detection/sfd/bbox.py -------------------------------------------------------------------------------- /wav2lip/face_detection/detection/sfd/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aml-Hassan-Abd-El-hamid/ai-lip-sync-app/HEAD/wav2lip/face_detection/detection/sfd/detect.py -------------------------------------------------------------------------------- /wav2lip/face_detection/detection/sfd/net_s3fd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aml-Hassan-Abd-El-hamid/ai-lip-sync-app/HEAD/wav2lip/face_detection/detection/sfd/net_s3fd.py -------------------------------------------------------------------------------- /wav2lip/face_detection/detection/sfd/sfd_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aml-Hassan-Abd-El-hamid/ai-lip-sync-app/HEAD/wav2lip/face_detection/detection/sfd/sfd_detector.py -------------------------------------------------------------------------------- /wav2lip/face_detection/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aml-Hassan-Abd-El-hamid/ai-lip-sync-app/HEAD/wav2lip/face_detection/models.py -------------------------------------------------------------------------------- /wav2lip/face_detection/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aml-Hassan-Abd-El-hamid/ai-lip-sync-app/HEAD/wav2lip/face_detection/utils.py -------------------------------------------------------------------------------- /wav2lip/hparams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aml-Hassan-Abd-El-hamid/ai-lip-sync-app/HEAD/wav2lip/hparams.py -------------------------------------------------------------------------------- /wav2lip/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aml-Hassan-Abd-El-hamid/ai-lip-sync-app/HEAD/wav2lip/inference.py -------------------------------------------------------------------------------- /wav2lip/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aml-Hassan-Abd-El-hamid/ai-lip-sync-app/HEAD/wav2lip/models/__init__.py -------------------------------------------------------------------------------- /wav2lip/models/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aml-Hassan-Abd-El-hamid/ai-lip-sync-app/HEAD/wav2lip/models/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /wav2lip/models/__pycache__/conv.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aml-Hassan-Abd-El-hamid/ai-lip-sync-app/HEAD/wav2lip/models/__pycache__/conv.cpython-311.pyc -------------------------------------------------------------------------------- /wav2lip/models/__pycache__/syncnet.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aml-Hassan-Abd-El-hamid/ai-lip-sync-app/HEAD/wav2lip/models/__pycache__/syncnet.cpython-311.pyc -------------------------------------------------------------------------------- /wav2lip/models/__pycache__/wav2lip.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aml-Hassan-Abd-El-hamid/ai-lip-sync-app/HEAD/wav2lip/models/__pycache__/wav2lip.cpython-311.pyc -------------------------------------------------------------------------------- /wav2lip/models/conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aml-Hassan-Abd-El-hamid/ai-lip-sync-app/HEAD/wav2lip/models/conv.py -------------------------------------------------------------------------------- /wav2lip/models/syncnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aml-Hassan-Abd-El-hamid/ai-lip-sync-app/HEAD/wav2lip/models/syncnet.py -------------------------------------------------------------------------------- /wav2lip/models/wav2lip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aml-Hassan-Abd-El-hamid/ai-lip-sync-app/HEAD/wav2lip/models/wav2lip.py -------------------------------------------------------------------------------- /wav2lip/results/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aml-Hassan-Abd-El-hamid/ai-lip-sync-app/HEAD/wav2lip/results/README.md -------------------------------------------------------------------------------- /wav2lip/temp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aml-Hassan-Abd-El-hamid/ai-lip-sync-app/HEAD/wav2lip/temp/README.md --------------------------------------------------------------------------------