├── Data └── README.md ├── DataBase └── Login.json ├── Easy_Wav2Lip ├── Motion_Inference.py ├── Wav2Lip_config.yaml ├── audio.py ├── checkpoints │ └── README .md ├── config.ini ├── degradations.py ├── easy_functions.py ├── enhance.py ├── hparams.py ├── inference.py ├── install.py ├── models │ ├── __init__.py │ ├── conv.py │ ├── syncnet.py │ └── wav2lip.py ├── requirements.txt └── run.py ├── LICENSE ├── Main.py ├── README.md ├── Result ├── SadTalker │ └── README.md ├── VITS │ └── README.md └── Wav2Lip │ └── README .md ├── SadTalker ├── Inference.py ├── SadTalker_config.yaml ├── checkpoints │ └── README .md ├── requirements.txt └── src │ ├── audio2exp_models │ ├── audio2exp.py │ └── networks.py │ ├── audio2pose_models │ ├── audio2pose.py │ ├── audio_encoder.py │ ├── cvae.py │ ├── discriminator.py │ ├── networks.py │ └── res_unet.py │ ├── config │ ├── auido2exp.yaml │ ├── auido2pose.yaml │ ├── facerender.yaml │ ├── facerender_still.yaml │ └── similarity_Lm3D_all.mat │ ├── face3d │ ├── data │ │ ├── __init__.py │ │ ├── base_dataset.py │ │ ├── flist_dataset.py │ │ ├── image_folder.py │ │ └── template_dataset.py │ ├── extract_kp_videos.py │ ├── extract_kp_videos_safe.py │ ├── models │ │ ├── __init__.py │ │ ├── arcface_torch │ │ │ ├── README.md │ │ │ ├── backbones │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── iresnet.cpython-38.pyc │ │ │ │ │ └── mobilefacenet.cpython-38.pyc │ │ │ │ ├── iresnet.py │ │ │ │ ├── iresnet2060.py │ │ │ │ └── mobilefacenet.py │ │ │ ├── configs │ │ │ │ ├── 3millions.py │ │ │ │ ├── 3millions_pfc.py │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── glint360k_mbf.py │ │ │ │ ├── glint360k_r100.py │ │ │ │ ├── glint360k_r18.py │ │ │ │ ├── glint360k_r34.py │ │ │ │ ├── glint360k_r50.py │ │ │ │ ├── ms1mv3_mbf.py │ │ │ │ ├── ms1mv3_r18.py │ │ │ │ ├── ms1mv3_r2060.py │ │ │ │ ├── ms1mv3_r34.py │ │ │ │ ├── ms1mv3_r50.py │ │ │ │ └── speed.py │ │ │ ├── dataset.py │ │ │ ├── docs │ │ │ │ ├── eval.md │ │ │ │ ├── install.md │ │ │ │ ├── modelzoo.md │ │ │ │ └── speed_benchmark.md │ │ │ ├── eval │ │ │ │ ├── __init__.py │ │ │ │ └── verification.py │ │ │ ├── eval_ijbc.py │ │ │ ├── inference.py │ │ │ ├── losses.py │ │ │ ├── onnx_helper.py │ │ │ ├── onnx_ijbc.py │ │ │ ├── partial_fc.py │ │ │ ├── requirement.txt │ │ │ ├── run.sh │ │ │ ├── torch2onnx.py │ │ │ ├── train.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── plot.py │ │ │ │ ├── utils_amp.py │ │ │ │ ├── utils_callbacks.py │ │ │ │ ├── utils_config.py │ │ │ │ ├── utils_logging.py │ │ │ │ └── utils_os.py │ │ ├── base_model.py │ │ ├── bfm.py │ │ ├── facerecon_model.py │ │ ├── losses.py │ │ ├── networks.py │ │ └── template_model.py │ ├── options │ │ ├── __init__.py │ │ ├── base_options.py │ │ ├── inference_options.py │ │ ├── test_options.py │ │ └── train_options.py │ ├── util │ │ ├── BBRegressorParam_r.mat │ │ ├── __init__.py │ │ ├── detect_lm68.py │ │ ├── generate_list.py │ │ ├── html.py │ │ ├── load_mats.py │ │ ├── my_awing_arch.py │ │ ├── nvdiffrast.py │ │ ├── preprocess.py │ │ ├── skin_mask.py │ │ ├── test_mean_face.txt │ │ ├── util.py │ │ └── visualizer.py │ └── visualize.py │ ├── facerender │ ├── animate.py │ ├── modules │ │ ├── dense_motion.py │ │ ├── discriminator.py │ │ ├── generator.py │ │ ├── keypoint_detector.py │ │ ├── make_animation.py │ │ ├── mapping.py │ │ └── util.py │ └── sync_batchnorm │ │ ├── __init__.py │ │ ├── batchnorm.py │ │ ├── comm.py │ │ ├── replicate.py │ │ └── unittest.py │ ├── generate_batch.py │ ├── generate_facerender_batch.py │ ├── gradio_demo.py │ ├── test_audio2coeff.py │ └── utils │ ├── audio.py │ ├── croper.py │ ├── face_enhancer.py │ ├── hparams.py │ ├── init_path.py │ ├── model2safetensor.py │ ├── paste_pic.py │ ├── preprocess.py │ ├── safetensor_helper.py │ ├── text2speech.py │ └── videoio.py ├── TEMP └── README .md ├── VITS ├── GPT-SoVITS_config.yaml ├── GPT_SoVITS │ ├── AR │ │ ├── __init__.py │ │ ├── data │ │ │ ├── __init__.py │ │ │ ├── bucket_sampler.py │ │ │ ├── data_module.py │ │ │ └── dataset.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── t2s_lightning_module.py │ │ │ ├── t2s_lightning_module_onnx.py │ │ │ ├── t2s_model.py │ │ │ ├── t2s_model_onnx.py │ │ │ └── utils.py │ │ ├── modules │ │ │ ├── __init__.py │ │ │ ├── activation.py │ │ │ ├── activation_onnx.py │ │ │ ├── embedding.py │ │ │ ├── embedding_onnx.py │ │ │ ├── lr_schedulers.py │ │ │ ├── optim.py │ │ │ ├── patched_mha_with_cache.py │ │ │ ├── patched_mha_with_cache_onnx.py │ │ │ ├── scaling.py │ │ │ ├── transformer.py │ │ │ └── transformer_onnx.py │ │ ├── text_processing │ │ │ ├── __init__.py │ │ │ ├── phonemizer.py │ │ │ └── symbols.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── initialize.py │ │ │ └── io.py │ ├── configs │ │ ├── s1.yaml │ │ ├── s1big.yaml │ │ ├── s1big2.yaml │ │ ├── s1longer.yaml │ │ ├── s1mq.yaml │ │ ├── s2.json │ │ └── train.yaml │ ├── feature_extractor │ │ ├── __init__.py │ │ ├── cnhubert.py │ │ └── whisper_enc.py │ ├── inference_gui.py │ ├── inference_webui.py │ ├── module │ │ ├── __init__.py │ │ ├── attentions.py │ │ ├── attentions_onnx.py │ │ ├── commons.py │ │ ├── core_vq.py │ │ ├── data_utils.py │ │ ├── losses.py │ │ ├── mel_processing.py │ │ ├── models.py │ │ ├── models_onnx.py │ │ ├── modules.py │ │ ├── mrte_model.py │ │ ├── quantize.py │ │ └── transforms.py │ ├── my_utils.py │ ├── onnx_export.py │ ├── prepare_datasets │ │ ├── 1-get-text.py │ │ ├── 2-get-hubert-wav32k.py │ │ └── 3-get-semantic.py │ ├── pretrained_models │ │ └── README.md │ ├── process_ckpt.py │ ├── s1_train.py │ ├── s2_train.py │ ├── text │ │ ├── __init__.py │ │ ├── chinese.py │ │ ├── cleaner.py │ │ ├── cmudict-fast.rep │ │ ├── cmudict.rep │ │ ├── engdict-hot.rep │ │ ├── engdict_cache.pickle │ │ ├── english.py │ │ ├── japanese.py │ │ ├── namedict_cache.pickle │ │ ├── opencpop-strict.txt │ │ ├── symbols.py │ │ ├── tone_sandhi.py │ │ └── zh_normalization │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── char_convert.py │ │ │ ├── chronology.py │ │ │ ├── constants.py │ │ │ ├── num.py │ │ │ ├── phonecode.py │ │ │ ├── quantifier.py │ │ │ └── text_normlization.py │ └── utils.py ├── GPT_weights │ └── README.md ├── Inference.py ├── Model.json ├── Ref_Wav │ ├── Girl.WAV │ └── Man.WAV ├── SoVITS_weights │ └── README.md ├── TEMP │ └── jieba.cache ├── config.py ├── gweight.txt ├── i18n │ └── locale │ │ ├── en_US.json │ │ ├── es_ES.json │ │ ├── fr_FR.json │ │ ├── it_IT.json │ │ ├── ja_JP.json │ │ ├── ko_KR.json │ │ ├── pt_BR.json │ │ ├── ru_RU.json │ │ ├── tr_TR.json │ │ ├── zh_CN.json │ │ ├── zh_HK.json │ │ ├── zh_SG.json │ │ └── zh_TW.json ├── logs │ └── README.md ├── sweight.txt ├── tools │ ├── __init__.py │ ├── asr │ │ ├── config.py │ │ ├── fasterwhisper_asr.py │ │ └── funasr_asr.py │ ├── cmd-denoise.py │ ├── i18n │ │ ├── i18n.py │ │ ├── locale │ │ │ ├── en_US.json │ │ │ ├── es_ES.json │ │ │ ├── fr_FR.json │ │ │ ├── it_IT.json │ │ │ ├── ja_JP.json │ │ │ ├── ko_KR.json │ │ │ ├── ru_RU.json │ │ │ ├── tr_TR.json │ │ │ ├── zh_CN.json │ │ │ ├── zh_HK.json │ │ │ ├── zh_SG.json │ │ │ └── zh_TW.json │ │ ├── locale_diff.py │ │ └── scan_i18n.py │ ├── my_utils.py │ ├── slice_audio.py │ ├── slicer2.py │ ├── subfix_webui.py │ └── uvr5 │ │ ├── lib │ │ ├── lib_v5 │ │ │ ├── dataset.py │ │ │ ├── layers.py │ │ │ ├── layers_123812KB.py │ │ │ ├── layers_123821KB.py │ │ │ ├── layers_33966KB.py │ │ │ ├── layers_537227KB.py │ │ │ ├── layers_537238KB.py │ │ │ ├── layers_new.py │ │ │ ├── model_param_init.py │ │ │ ├── modelparams │ │ │ │ ├── 1band_sr16000_hl512.json │ │ │ │ ├── 1band_sr32000_hl512.json │ │ │ │ ├── 1band_sr33075_hl384.json │ │ │ │ ├── 1band_sr44100_hl1024.json │ │ │ │ ├── 1band_sr44100_hl256.json │ │ │ │ ├── 1band_sr44100_hl512.json │ │ │ │ ├── 1band_sr44100_hl512_cut.json │ │ │ │ ├── 2band_32000.json │ │ │ │ ├── 2band_44100_lofi.json │ │ │ │ ├── 2band_48000.json │ │ │ │ ├── 3band_44100.json │ │ │ │ ├── 3band_44100_mid.json │ │ │ │ ├── 3band_44100_msb2.json │ │ │ │ ├── 4band_44100.json │ │ │ │ ├── 4band_44100_mid.json │ │ │ │ ├── 4band_44100_msb.json │ │ │ │ ├── 4band_44100_msb2.json │ │ │ │ ├── 4band_44100_reverse.json │ │ │ │ ├── 4band_44100_sw.json │ │ │ │ ├── 4band_v2.json │ │ │ │ ├── 4band_v2_sn.json │ │ │ │ ├── 4band_v3.json │ │ │ │ └── ensemble.json │ │ │ ├── nets.py │ │ │ ├── nets_123812KB.py │ │ │ ├── nets_123821KB.py │ │ │ ├── nets_33966KB.py │ │ │ ├── nets_537227KB.py │ │ │ ├── nets_537238KB.py │ │ │ ├── nets_61968KB.py │ │ │ ├── nets_new.py │ │ │ └── spec_utils.py │ │ ├── name_params.json │ │ └── utils.py │ │ ├── mdxnet.py │ │ ├── vr.py │ │ └── webui.py ├── train.py └── webui.py ├── docs ├── Horizons.jpg ├── Logo.jpg ├── QR.jpg ├── image1.png ├── image2.png ├── image3.png ├── image4.png ├── image5.png ├── image6.png ├── image7.png ├── image8.png ├── model1.png ├── model2.png ├── model3.png ├── model4.png ├── model5.png ├── model6.png └── video.mp4 ├── gfpgan └── weights │ └── README .md ├── requirements.txt ├── server1.4.0.py └── util ├── Function.py ├── PPT2Video.py ├── VideoAddText.py └── WavJoin.py /Data/README.md: -------------------------------------------------------------------------------- 1 | 该文件用于存放用户的所有数据 -------------------------------------------------------------------------------- /DataBase/Login.json: -------------------------------------------------------------------------------- 1 | { 2 | "Test": "123000" 3 | } -------------------------------------------------------------------------------- /Easy_Wav2Lip/Motion_Inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/Easy_Wav2Lip/Motion_Inference.py -------------------------------------------------------------------------------- /Easy_Wav2Lip/Wav2Lip_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/Easy_Wav2Lip/Wav2Lip_config.yaml -------------------------------------------------------------------------------- /Easy_Wav2Lip/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/Easy_Wav2Lip/audio.py -------------------------------------------------------------------------------- /Easy_Wav2Lip/checkpoints/README .md: -------------------------------------------------------------------------------- 1 | 存放模型 -------------------------------------------------------------------------------- /Easy_Wav2Lip/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/Easy_Wav2Lip/config.ini -------------------------------------------------------------------------------- /Easy_Wav2Lip/degradations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/Easy_Wav2Lip/degradations.py -------------------------------------------------------------------------------- /Easy_Wav2Lip/easy_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/Easy_Wav2Lip/easy_functions.py -------------------------------------------------------------------------------- /Easy_Wav2Lip/enhance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/Easy_Wav2Lip/enhance.py -------------------------------------------------------------------------------- /Easy_Wav2Lip/hparams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/Easy_Wav2Lip/hparams.py -------------------------------------------------------------------------------- /Easy_Wav2Lip/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/Easy_Wav2Lip/inference.py -------------------------------------------------------------------------------- /Easy_Wav2Lip/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/Easy_Wav2Lip/install.py -------------------------------------------------------------------------------- /Easy_Wav2Lip/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/Easy_Wav2Lip/models/__init__.py -------------------------------------------------------------------------------- /Easy_Wav2Lip/models/conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/Easy_Wav2Lip/models/conv.py -------------------------------------------------------------------------------- /Easy_Wav2Lip/models/syncnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/Easy_Wav2Lip/models/syncnet.py -------------------------------------------------------------------------------- /Easy_Wav2Lip/models/wav2lip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/Easy_Wav2Lip/models/wav2lip.py -------------------------------------------------------------------------------- /Easy_Wav2Lip/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/Easy_Wav2Lip/requirements.txt -------------------------------------------------------------------------------- /Easy_Wav2Lip/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/Easy_Wav2Lip/run.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/LICENSE -------------------------------------------------------------------------------- /Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/Main.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/README.md -------------------------------------------------------------------------------- /Result/SadTalker/README.md: -------------------------------------------------------------------------------- 1 | 该文件夹用于存放用户 SadTalker 生成的视频 -------------------------------------------------------------------------------- /Result/VITS/README.md: -------------------------------------------------------------------------------- 1 | 该文件夹用于存放用户 VITS 生成的音频 -------------------------------------------------------------------------------- /Result/Wav2Lip/README .md: -------------------------------------------------------------------------------- 1 | 存放生成数据 -------------------------------------------------------------------------------- /SadTalker/Inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/Inference.py -------------------------------------------------------------------------------- /SadTalker/SadTalker_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/SadTalker_config.yaml -------------------------------------------------------------------------------- /SadTalker/checkpoints/README .md: -------------------------------------------------------------------------------- 1 | 存放模型 -------------------------------------------------------------------------------- /SadTalker/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/requirements.txt -------------------------------------------------------------------------------- /SadTalker/src/audio2exp_models/audio2exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/audio2exp_models/audio2exp.py -------------------------------------------------------------------------------- /SadTalker/src/audio2exp_models/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/audio2exp_models/networks.py -------------------------------------------------------------------------------- /SadTalker/src/audio2pose_models/audio2pose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/audio2pose_models/audio2pose.py -------------------------------------------------------------------------------- /SadTalker/src/audio2pose_models/audio_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/audio2pose_models/audio_encoder.py -------------------------------------------------------------------------------- /SadTalker/src/audio2pose_models/cvae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/audio2pose_models/cvae.py -------------------------------------------------------------------------------- /SadTalker/src/audio2pose_models/discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/audio2pose_models/discriminator.py -------------------------------------------------------------------------------- /SadTalker/src/audio2pose_models/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/audio2pose_models/networks.py -------------------------------------------------------------------------------- /SadTalker/src/audio2pose_models/res_unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/audio2pose_models/res_unet.py -------------------------------------------------------------------------------- /SadTalker/src/config/auido2exp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/config/auido2exp.yaml -------------------------------------------------------------------------------- /SadTalker/src/config/auido2pose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/config/auido2pose.yaml -------------------------------------------------------------------------------- /SadTalker/src/config/facerender.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/config/facerender.yaml -------------------------------------------------------------------------------- /SadTalker/src/config/facerender_still.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/config/facerender_still.yaml -------------------------------------------------------------------------------- /SadTalker/src/config/similarity_Lm3D_all.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/config/similarity_Lm3D_all.mat -------------------------------------------------------------------------------- /SadTalker/src/face3d/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/data/__init__.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/data/base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/data/base_dataset.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/data/flist_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/data/flist_dataset.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/data/image_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/data/image_folder.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/data/template_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/data/template_dataset.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/extract_kp_videos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/extract_kp_videos.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/extract_kp_videos_safe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/extract_kp_videos_safe.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/__init__.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/README.md -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/backbones/__init__.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/backbones/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/backbones/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/backbones/__pycache__/iresnet.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/backbones/__pycache__/iresnet.cpython-38.pyc -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/backbones/__pycache__/mobilefacenet.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/backbones/__pycache__/mobilefacenet.cpython-38.pyc -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/backbones/iresnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/backbones/iresnet.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/backbones/iresnet2060.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/backbones/iresnet2060.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/backbones/mobilefacenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/backbones/mobilefacenet.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/configs/3millions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/configs/3millions.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/configs/3millions_pfc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/configs/3millions_pfc.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/configs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/configs/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/configs/base.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/configs/glint360k_mbf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/configs/glint360k_mbf.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/configs/glint360k_r100.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/configs/glint360k_r100.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/configs/glint360k_r18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/configs/glint360k_r18.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/configs/glint360k_r34.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/configs/glint360k_r34.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/configs/glint360k_r50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/configs/glint360k_r50.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/configs/ms1mv3_mbf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/configs/ms1mv3_mbf.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/configs/ms1mv3_r18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/configs/ms1mv3_r18.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/configs/ms1mv3_r2060.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/configs/ms1mv3_r2060.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/configs/ms1mv3_r34.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/configs/ms1mv3_r34.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/configs/ms1mv3_r50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/configs/ms1mv3_r50.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/configs/speed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/configs/speed.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/dataset.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/docs/eval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/docs/eval.md -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/docs/install.md -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/docs/modelzoo.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/docs/speed_benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/docs/speed_benchmark.md -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/eval/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/eval/verification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/eval/verification.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/eval_ijbc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/eval_ijbc.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/inference.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/losses.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/onnx_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/onnx_helper.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/onnx_ijbc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/onnx_ijbc.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/partial_fc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/partial_fc.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/requirement.txt: -------------------------------------------------------------------------------- 1 | tensorboard 2 | easydict 3 | mxnet 4 | onnx 5 | sklearn 6 | -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/run.sh -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/torch2onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/torch2onnx.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/train.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/utils/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/utils/plot.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/utils/utils_amp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/utils/utils_amp.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/utils/utils_callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/utils/utils_callbacks.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/utils/utils_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/utils/utils_config.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/utils/utils_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/arcface_torch/utils/utils_logging.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/arcface_torch/utils/utils_os.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/base_model.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/bfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/bfm.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/facerecon_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/facerecon_model.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/losses.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/networks.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/models/template_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/models/template_model.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/options/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/options/__init__.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/options/base_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/options/base_options.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/options/inference_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/options/inference_options.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/options/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/options/test_options.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/options/train_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/options/train_options.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/util/BBRegressorParam_r.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/util/BBRegressorParam_r.mat -------------------------------------------------------------------------------- /SadTalker/src/face3d/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/util/__init__.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/util/detect_lm68.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/util/detect_lm68.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/util/generate_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/util/generate_list.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/util/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/util/html.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/util/load_mats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/util/load_mats.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/util/my_awing_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/util/my_awing_arch.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/util/nvdiffrast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/util/nvdiffrast.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/util/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/util/preprocess.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/util/skin_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/util/skin_mask.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/util/test_mean_face.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/util/test_mean_face.txt -------------------------------------------------------------------------------- /SadTalker/src/face3d/util/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/util/util.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/util/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/util/visualizer.py -------------------------------------------------------------------------------- /SadTalker/src/face3d/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/face3d/visualize.py -------------------------------------------------------------------------------- /SadTalker/src/facerender/animate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/facerender/animate.py -------------------------------------------------------------------------------- /SadTalker/src/facerender/modules/dense_motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/facerender/modules/dense_motion.py -------------------------------------------------------------------------------- /SadTalker/src/facerender/modules/discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/facerender/modules/discriminator.py -------------------------------------------------------------------------------- /SadTalker/src/facerender/modules/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/facerender/modules/generator.py -------------------------------------------------------------------------------- /SadTalker/src/facerender/modules/keypoint_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/facerender/modules/keypoint_detector.py -------------------------------------------------------------------------------- /SadTalker/src/facerender/modules/make_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/facerender/modules/make_animation.py -------------------------------------------------------------------------------- /SadTalker/src/facerender/modules/mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/facerender/modules/mapping.py -------------------------------------------------------------------------------- /SadTalker/src/facerender/modules/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/facerender/modules/util.py -------------------------------------------------------------------------------- /SadTalker/src/facerender/sync_batchnorm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/facerender/sync_batchnorm/__init__.py -------------------------------------------------------------------------------- /SadTalker/src/facerender/sync_batchnorm/batchnorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/facerender/sync_batchnorm/batchnorm.py -------------------------------------------------------------------------------- /SadTalker/src/facerender/sync_batchnorm/comm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/facerender/sync_batchnorm/comm.py -------------------------------------------------------------------------------- /SadTalker/src/facerender/sync_batchnorm/replicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/facerender/sync_batchnorm/replicate.py -------------------------------------------------------------------------------- /SadTalker/src/facerender/sync_batchnorm/unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/facerender/sync_batchnorm/unittest.py -------------------------------------------------------------------------------- /SadTalker/src/generate_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/generate_batch.py -------------------------------------------------------------------------------- /SadTalker/src/generate_facerender_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/generate_facerender_batch.py -------------------------------------------------------------------------------- /SadTalker/src/gradio_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/gradio_demo.py -------------------------------------------------------------------------------- /SadTalker/src/test_audio2coeff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/test_audio2coeff.py -------------------------------------------------------------------------------- /SadTalker/src/utils/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/utils/audio.py -------------------------------------------------------------------------------- /SadTalker/src/utils/croper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/utils/croper.py -------------------------------------------------------------------------------- /SadTalker/src/utils/face_enhancer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/utils/face_enhancer.py -------------------------------------------------------------------------------- /SadTalker/src/utils/hparams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/utils/hparams.py -------------------------------------------------------------------------------- /SadTalker/src/utils/init_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/utils/init_path.py -------------------------------------------------------------------------------- /SadTalker/src/utils/model2safetensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/utils/model2safetensor.py -------------------------------------------------------------------------------- /SadTalker/src/utils/paste_pic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/utils/paste_pic.py -------------------------------------------------------------------------------- /SadTalker/src/utils/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/utils/preprocess.py -------------------------------------------------------------------------------- /SadTalker/src/utils/safetensor_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/utils/safetensor_helper.py -------------------------------------------------------------------------------- /SadTalker/src/utils/text2speech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/utils/text2speech.py -------------------------------------------------------------------------------- /SadTalker/src/utils/videoio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/SadTalker/src/utils/videoio.py -------------------------------------------------------------------------------- /TEMP/README .md: -------------------------------------------------------------------------------- 1 | 存放临时文件 -------------------------------------------------------------------------------- /VITS/GPT-SoVITS_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT-SoVITS_config.yaml -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/AR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/AR/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/AR/data/bucket_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/AR/data/bucket_sampler.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/AR/data/data_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/AR/data/data_module.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/AR/data/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/AR/data/dataset.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/AR/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/AR/models/t2s_lightning_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/AR/models/t2s_lightning_module.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/AR/models/t2s_lightning_module_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/AR/models/t2s_lightning_module_onnx.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/AR/models/t2s_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/AR/models/t2s_model.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/AR/models/t2s_model_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/AR/models/t2s_model_onnx.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/AR/models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/AR/models/utils.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/AR/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/AR/modules/activation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/AR/modules/activation.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/AR/modules/activation_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/AR/modules/activation_onnx.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/AR/modules/embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/AR/modules/embedding.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/AR/modules/embedding_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/AR/modules/embedding_onnx.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/AR/modules/lr_schedulers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/AR/modules/lr_schedulers.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/AR/modules/optim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/AR/modules/optim.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/AR/modules/patched_mha_with_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/AR/modules/patched_mha_with_cache.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/AR/modules/patched_mha_with_cache_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/AR/modules/patched_mha_with_cache_onnx.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/AR/modules/scaling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/AR/modules/scaling.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/AR/modules/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/AR/modules/transformer.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/AR/modules/transformer_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/AR/modules/transformer_onnx.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/AR/text_processing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/AR/text_processing/phonemizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/AR/text_processing/phonemizer.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/AR/text_processing/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/AR/text_processing/symbols.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/AR/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/AR/utils/__init__.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/AR/utils/initialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/AR/utils/initialize.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/AR/utils/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/AR/utils/io.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/configs/s1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/configs/s1.yaml -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/configs/s1big.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/configs/s1big.yaml -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/configs/s1big2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/configs/s1big2.yaml -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/configs/s1longer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/configs/s1longer.yaml -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/configs/s1mq.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/configs/s1mq.yaml -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/configs/s2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/configs/s2.json -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/configs/train.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/configs/train.yaml -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/feature_extractor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/feature_extractor/__init__.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/feature_extractor/cnhubert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/feature_extractor/cnhubert.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/feature_extractor/whisper_enc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/feature_extractor/whisper_enc.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/inference_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/inference_gui.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/inference_webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/inference_webui.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/module/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/module/attentions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/module/attentions.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/module/attentions_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/module/attentions_onnx.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/module/commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/module/commons.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/module/core_vq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/module/core_vq.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/module/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/module/data_utils.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/module/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/module/losses.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/module/mel_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/module/mel_processing.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/module/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/module/models.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/module/models_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/module/models_onnx.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/module/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/module/modules.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/module/mrte_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/module/mrte_model.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/module/quantize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/module/quantize.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/module/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/module/transforms.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/my_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/my_utils.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/onnx_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/onnx_export.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/prepare_datasets/1-get-text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/prepare_datasets/1-get-text.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/prepare_datasets/2-get-hubert-wav32k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/prepare_datasets/2-get-hubert-wav32k.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/prepare_datasets/3-get-semantic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/prepare_datasets/3-get-semantic.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/pretrained_models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/pretrained_models/README.md -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/process_ckpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/process_ckpt.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/s1_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/s1_train.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/s2_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/s2_train.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/text/__init__.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/text/chinese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/text/chinese.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/text/cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/text/cleaner.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/text/cmudict-fast.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/text/cmudict-fast.rep -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/text/cmudict.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/text/cmudict.rep -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/text/engdict-hot.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/text/engdict-hot.rep -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/text/engdict_cache.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/text/engdict_cache.pickle -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/text/english.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/text/english.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/text/japanese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/text/japanese.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/text/namedict_cache.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/text/namedict_cache.pickle -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/text/opencpop-strict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/text/opencpop-strict.txt -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/text/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/text/symbols.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/text/tone_sandhi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/text/tone_sandhi.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/text/zh_normalization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/text/zh_normalization/README.md -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/text/zh_normalization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/text/zh_normalization/__init__.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/text/zh_normalization/char_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/text/zh_normalization/char_convert.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/text/zh_normalization/chronology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/text/zh_normalization/chronology.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/text/zh_normalization/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/text/zh_normalization/constants.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/text/zh_normalization/num.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/text/zh_normalization/num.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/text/zh_normalization/phonecode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/text/zh_normalization/phonecode.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/text/zh_normalization/quantifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/text/zh_normalization/quantifier.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/text/zh_normalization/text_normlization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/text/zh_normalization/text_normlization.py -------------------------------------------------------------------------------- /VITS/GPT_SoVITS/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/GPT_SoVITS/utils.py -------------------------------------------------------------------------------- /VITS/GPT_weights/README.md: -------------------------------------------------------------------------------- 1 | ### 该文件夹需要存放这些模型文件 2 | 3 | ![img](../../docs/model5.png) -------------------------------------------------------------------------------- /VITS/Inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/Inference.py -------------------------------------------------------------------------------- /VITS/Model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/Model.json -------------------------------------------------------------------------------- /VITS/Ref_Wav/Girl.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/Ref_Wav/Girl.WAV -------------------------------------------------------------------------------- /VITS/Ref_Wav/Man.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/Ref_Wav/Man.WAV -------------------------------------------------------------------------------- /VITS/SoVITS_weights/README.md: -------------------------------------------------------------------------------- 1 | ### 该文件夹需要存放这些模型文件 2 | 3 | ![img](../../docs/model6.png) -------------------------------------------------------------------------------- /VITS/TEMP/jieba.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/TEMP/jieba.cache -------------------------------------------------------------------------------- /VITS/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/config.py -------------------------------------------------------------------------------- /VITS/gweight.txt: -------------------------------------------------------------------------------- 1 | VITS/GPT_weights/man.ckpt -------------------------------------------------------------------------------- /VITS/i18n/locale/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/i18n/locale/en_US.json -------------------------------------------------------------------------------- /VITS/i18n/locale/es_ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/i18n/locale/es_ES.json -------------------------------------------------------------------------------- /VITS/i18n/locale/fr_FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/i18n/locale/fr_FR.json -------------------------------------------------------------------------------- /VITS/i18n/locale/it_IT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/i18n/locale/it_IT.json -------------------------------------------------------------------------------- /VITS/i18n/locale/ja_JP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/i18n/locale/ja_JP.json -------------------------------------------------------------------------------- /VITS/i18n/locale/ko_KR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/i18n/locale/ko_KR.json -------------------------------------------------------------------------------- /VITS/i18n/locale/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/i18n/locale/pt_BR.json -------------------------------------------------------------------------------- /VITS/i18n/locale/ru_RU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/i18n/locale/ru_RU.json -------------------------------------------------------------------------------- /VITS/i18n/locale/tr_TR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/i18n/locale/tr_TR.json -------------------------------------------------------------------------------- /VITS/i18n/locale/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/i18n/locale/zh_CN.json -------------------------------------------------------------------------------- /VITS/i18n/locale/zh_HK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/i18n/locale/zh_HK.json -------------------------------------------------------------------------------- /VITS/i18n/locale/zh_SG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/i18n/locale/zh_SG.json -------------------------------------------------------------------------------- /VITS/i18n/locale/zh_TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/i18n/locale/zh_TW.json -------------------------------------------------------------------------------- /VITS/logs/README.md: -------------------------------------------------------------------------------- 1 | 存放logs 2 | -------------------------------------------------------------------------------- /VITS/sweight.txt: -------------------------------------------------------------------------------- 1 | VITS/SoVITS_weights/man.pth -------------------------------------------------------------------------------- /VITS/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /VITS/tools/asr/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/asr/config.py -------------------------------------------------------------------------------- /VITS/tools/asr/fasterwhisper_asr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/asr/fasterwhisper_asr.py -------------------------------------------------------------------------------- /VITS/tools/asr/funasr_asr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/asr/funasr_asr.py -------------------------------------------------------------------------------- /VITS/tools/cmd-denoise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/cmd-denoise.py -------------------------------------------------------------------------------- /VITS/tools/i18n/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/i18n/i18n.py -------------------------------------------------------------------------------- /VITS/tools/i18n/locale/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/i18n/locale/en_US.json -------------------------------------------------------------------------------- /VITS/tools/i18n/locale/es_ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/i18n/locale/es_ES.json -------------------------------------------------------------------------------- /VITS/tools/i18n/locale/fr_FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/i18n/locale/fr_FR.json -------------------------------------------------------------------------------- /VITS/tools/i18n/locale/it_IT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/i18n/locale/it_IT.json -------------------------------------------------------------------------------- /VITS/tools/i18n/locale/ja_JP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/i18n/locale/ja_JP.json -------------------------------------------------------------------------------- /VITS/tools/i18n/locale/ko_KR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/i18n/locale/ko_KR.json -------------------------------------------------------------------------------- /VITS/tools/i18n/locale/ru_RU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/i18n/locale/ru_RU.json -------------------------------------------------------------------------------- /VITS/tools/i18n/locale/tr_TR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/i18n/locale/tr_TR.json -------------------------------------------------------------------------------- /VITS/tools/i18n/locale/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/i18n/locale/zh_CN.json -------------------------------------------------------------------------------- /VITS/tools/i18n/locale/zh_HK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/i18n/locale/zh_HK.json -------------------------------------------------------------------------------- /VITS/tools/i18n/locale/zh_SG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/i18n/locale/zh_SG.json -------------------------------------------------------------------------------- /VITS/tools/i18n/locale/zh_TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/i18n/locale/zh_TW.json -------------------------------------------------------------------------------- /VITS/tools/i18n/locale_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/i18n/locale_diff.py -------------------------------------------------------------------------------- /VITS/tools/i18n/scan_i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/i18n/scan_i18n.py -------------------------------------------------------------------------------- /VITS/tools/my_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/my_utils.py -------------------------------------------------------------------------------- /VITS/tools/slice_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/slice_audio.py -------------------------------------------------------------------------------- /VITS/tools/slicer2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/slicer2.py -------------------------------------------------------------------------------- /VITS/tools/subfix_webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/subfix_webui.py -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/dataset.py -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/layers.py -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/layers_123812KB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/layers_123812KB.py -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/layers_123821KB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/layers_123821KB.py -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/layers_33966KB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/layers_33966KB.py -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/layers_537227KB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/layers_537227KB.py -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/layers_537238KB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/layers_537238KB.py -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/layers_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/layers_new.py -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/model_param_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/model_param_init.py -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/modelparams/1band_sr16000_hl512.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/modelparams/1band_sr16000_hl512.json -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/modelparams/1band_sr32000_hl512.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/modelparams/1band_sr32000_hl512.json -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/modelparams/1band_sr33075_hl384.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/modelparams/1band_sr33075_hl384.json -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/modelparams/1band_sr44100_hl1024.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/modelparams/1band_sr44100_hl1024.json -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/modelparams/1band_sr44100_hl256.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/modelparams/1band_sr44100_hl256.json -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/modelparams/1band_sr44100_hl512.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/modelparams/1band_sr44100_hl512.json -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/modelparams/1band_sr44100_hl512_cut.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/modelparams/1band_sr44100_hl512_cut.json -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/modelparams/2band_32000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/modelparams/2band_32000.json -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/modelparams/2band_44100_lofi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/modelparams/2band_44100_lofi.json -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/modelparams/2band_48000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/modelparams/2band_48000.json -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/modelparams/3band_44100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/modelparams/3band_44100.json -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/modelparams/3band_44100_mid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/modelparams/3band_44100_mid.json -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/modelparams/3band_44100_msb2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/modelparams/3band_44100_msb2.json -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/modelparams/4band_44100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/modelparams/4band_44100.json -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/modelparams/4band_44100_mid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/modelparams/4band_44100_mid.json -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/modelparams/4band_44100_msb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/modelparams/4band_44100_msb.json -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/modelparams/4band_44100_msb2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/modelparams/4band_44100_msb2.json -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/modelparams/4band_44100_reverse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/modelparams/4band_44100_reverse.json -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/modelparams/4band_44100_sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/modelparams/4band_44100_sw.json -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/modelparams/4band_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/modelparams/4band_v2.json -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/modelparams/4band_v2_sn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/modelparams/4band_v2_sn.json -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/modelparams/4band_v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/modelparams/4band_v3.json -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/modelparams/ensemble.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/modelparams/ensemble.json -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/nets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/nets.py -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/nets_123812KB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/nets_123812KB.py -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/nets_123821KB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/nets_123821KB.py -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/nets_33966KB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/nets_33966KB.py -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/nets_537227KB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/nets_537227KB.py -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/nets_537238KB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/nets_537238KB.py -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/nets_61968KB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/nets_61968KB.py -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/nets_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/nets_new.py -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/lib_v5/spec_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/lib_v5/spec_utils.py -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/name_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/name_params.json -------------------------------------------------------------------------------- /VITS/tools/uvr5/lib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/lib/utils.py -------------------------------------------------------------------------------- /VITS/tools/uvr5/mdxnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/mdxnet.py -------------------------------------------------------------------------------- /VITS/tools/uvr5/vr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/vr.py -------------------------------------------------------------------------------- /VITS/tools/uvr5/webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/tools/uvr5/webui.py -------------------------------------------------------------------------------- /VITS/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/train.py -------------------------------------------------------------------------------- /VITS/webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/VITS/webui.py -------------------------------------------------------------------------------- /docs/Horizons.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/docs/Horizons.jpg -------------------------------------------------------------------------------- /docs/Logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/docs/Logo.jpg -------------------------------------------------------------------------------- /docs/QR.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/docs/QR.jpg -------------------------------------------------------------------------------- /docs/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/docs/image1.png -------------------------------------------------------------------------------- /docs/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/docs/image2.png -------------------------------------------------------------------------------- /docs/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/docs/image3.png -------------------------------------------------------------------------------- /docs/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/docs/image4.png -------------------------------------------------------------------------------- /docs/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/docs/image5.png -------------------------------------------------------------------------------- /docs/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/docs/image6.png -------------------------------------------------------------------------------- /docs/image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/docs/image7.png -------------------------------------------------------------------------------- /docs/image8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/docs/image8.png -------------------------------------------------------------------------------- /docs/model1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/docs/model1.png -------------------------------------------------------------------------------- /docs/model2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/docs/model2.png -------------------------------------------------------------------------------- /docs/model3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/docs/model3.png -------------------------------------------------------------------------------- /docs/model4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/docs/model4.png -------------------------------------------------------------------------------- /docs/model5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/docs/model5.png -------------------------------------------------------------------------------- /docs/model6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/docs/model6.png -------------------------------------------------------------------------------- /docs/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/docs/video.mp4 -------------------------------------------------------------------------------- /gfpgan/weights/README .md: -------------------------------------------------------------------------------- 1 | 存放模型 -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/requirements.txt -------------------------------------------------------------------------------- /server1.4.0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/server1.4.0.py -------------------------------------------------------------------------------- /util/Function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/util/Function.py -------------------------------------------------------------------------------- /util/PPT2Video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/util/PPT2Video.py -------------------------------------------------------------------------------- /util/VideoAddText.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/util/VideoAddText.py -------------------------------------------------------------------------------- /util/WavJoin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xaio6/Digital_Human_API/HEAD/util/WavJoin.py --------------------------------------------------------------------------------