gitextract_75g1ac60/ ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README-EN.md ├── README.md ├── app.py ├── assets/ │ └── faq.md ├── baseasr.py ├── basereal.py ├── hubertasr.py ├── lightreal.py ├── lipasr.py ├── lipreal.py ├── llm.py ├── logger.py ├── museasr.py ├── musereal.py ├── musetalk/ │ ├── genavatar.py │ ├── myutil.py │ ├── utils/ │ │ ├── __init__.py │ │ ├── audio_processor.py │ │ ├── blending.py │ │ ├── dwpose/ │ │ │ ├── default_runtime.py │ │ │ └── rtmpose-l_8xb32-270e_coco-ubody-wholebody-384x288.py │ │ ├── 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 │ │ ├── face_parsing/ │ │ │ ├── __init__.py │ │ │ ├── model.py │ │ │ └── resnet.py │ │ ├── preprocessing.py │ │ ├── training_utils.py │ │ └── utils.py │ └── whisper/ │ ├── audio2feature.py │ └── whisper/ │ ├── __init__.py │ ├── __main__.py │ ├── assets/ │ │ ├── gpt2/ │ │ │ ├── merges.txt │ │ │ ├── special_tokens_map.json │ │ │ ├── tokenizer_config.json │ │ │ └── vocab.json │ │ ├── mel_filters.npz │ │ └── multilingual/ │ │ ├── added_tokens.json │ │ ├── merges.txt │ │ ├── special_tokens_map.json │ │ ├── tokenizer_config.json │ │ └── vocab.json │ ├── audio.py │ ├── decoding.py │ ├── model.py │ ├── normalizers/ │ │ ├── __init__.py │ │ ├── basic.py │ │ ├── english.json │ │ └── english.py │ ├── tokenizer.py │ ├── transcribe.py │ └── utils.py ├── requirements.txt ├── ttsreal.py ├── ultralight/ │ ├── audio2feature.py │ ├── face_detect_utils/ │ │ ├── base_module.py │ │ ├── detect_face.py │ │ ├── get_landmark.py │ │ ├── mean_face.txt │ │ └── pfld_mobileone.py │ ├── genavatar-bak.py │ ├── genavatar.py │ └── unet.py ├── wav2lip/ │ ├── audio.py │ ├── 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 │ ├── genavatar.py │ └── hparams.py ├── web/ │ ├── asr/ │ │ ├── index.html │ │ ├── main.js │ │ ├── pcm.js │ │ ├── recorder-core.js │ │ ├── wav.js │ │ └── wsconnecter.js │ ├── chat.html │ ├── client.js │ ├── dashboard.html │ ├── echo.html │ ├── echoapi.html │ ├── rtcpush.html │ ├── rtcpushapi-asr.html │ ├── rtcpushapi.html │ ├── rtcpushchat.html │ ├── srs.sdk.js │ ├── webrtc.html │ ├── webrtcapi-asr.html │ ├── webrtcapi-custom.html │ ├── webrtcapi.html │ ├── webrtcchat.html │ └── whep.js └── webrtc.py