├── .dockerignore ├── .env ├── .github ├── FUNDING.yml └── workflows │ └── docker-image-tag-commit.yml ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── LICENSE ├── README.md ├── README_EN.md ├── app.py ├── appdingzhi.py ├── change.md ├── clone ├── __init__.py ├── cfg.py ├── character.json └── logic.py ├── code_dev.py ├── docker ├── build@source │ └── dockerfile ├── up@cpu │ ├── .models.json │ └── docker-compose.yml └── up@gpu │ ├── .models.json │ └── docker-compose.yml ├── environment.yml ├── images ├── 0.png ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── code_dev01.png ├── code_dev02.png └── mp.jpg ├── models ├── faster │ └── models--Systran--faster-whisper-medium │ │ ├── refs │ │ └── main │ │ └── snapshots │ │ └── ebe41f70d5b6dfa9166e2c581c45c9c0cfc57b66 │ │ ├── config.json │ │ ├── tokenizer.json │ │ └── vocabulary.txt └── tts │ └── run │ └── training │ └── XTTS_v2.0_original_model_files │ ├── config.json │ └── vocab.json ├── params.json ├── requirements.txt ├── runapp.bat ├── runtrain.bat ├── static ├── images │ ├── 2.png │ ├── alipay.png │ ├── mp.jpg │ └── wx.png ├── js │ ├── bootstrap.bundle.min.js │ ├── bootstrap.min.css │ ├── jquery.min.js │ └── layer │ │ ├── layer.js │ │ ├── mobile │ │ ├── layer.js │ │ └── need │ │ │ └── layer.css │ │ └── theme │ │ └── default │ │ ├── icon-ext.png │ │ ├── icon.png │ │ ├── layer.css │ │ ├── loading-0.gif │ │ ├── loading-1.gif │ │ └── loading-2.gif └── voicelist │ ├── cn-XiaoyiNeural.wav │ ├── cn-YunxiaNeural.wav │ ├── cn-nan.wav │ ├── cn-sx.wav │ ├── en-AriaNeural.wav │ ├── en-ClaraNeural.wav │ ├── en-GuyNeural.wav │ ├── en-MichelleNeural.wav │ ├── en-NatashaNeural.wav │ ├── en-SteffanNeural.wav │ ├── hk-HiuGaaiNeural.wav │ └── tw-HsiaoChenNeural.wav ├── templates ├── index.html └── txt.html ├── test.py ├── testapi.py ├── train.py ├── tts └── 模型目录.txt ├── tts_cache ├── cache └── d6c67f0e17e8737772c0a7172844fbe40ae535bea18eb69cb212f2adaee668dd ├── utils ├── __init__.py ├── cfg.py └── formatter.py ├── version.json └── xtts_demo.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | HTTP_PROXY= 2 | WEB_ADDRESS=127.0.0.1:9988 3 | ENABLE_STS=0 4 | DEVICE=CUDA -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/docker-image-tag-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/.github/workflows/docker-image-tag-commit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/README_EN.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/app.py -------------------------------------------------------------------------------- /appdingzhi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/appdingzhi.py -------------------------------------------------------------------------------- /change.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/change.md -------------------------------------------------------------------------------- /clone/__init__.py: -------------------------------------------------------------------------------- 1 | VERSION=908 2 | ver="0.908" -------------------------------------------------------------------------------- /clone/cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/clone/cfg.py -------------------------------------------------------------------------------- /clone/character.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/clone/character.json -------------------------------------------------------------------------------- /clone/logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/clone/logic.py -------------------------------------------------------------------------------- /code_dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/code_dev.py -------------------------------------------------------------------------------- /docker/build@source/dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/docker/build@source/dockerfile -------------------------------------------------------------------------------- /docker/up@cpu/.models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/docker/up@cpu/.models.json -------------------------------------------------------------------------------- /docker/up@cpu/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/docker/up@cpu/docker-compose.yml -------------------------------------------------------------------------------- /docker/up@gpu/.models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/docker/up@gpu/.models.json -------------------------------------------------------------------------------- /docker/up@gpu/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/docker/up@gpu/docker-compose.yml -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/environment.yml -------------------------------------------------------------------------------- /images/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/images/0.png -------------------------------------------------------------------------------- /images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/images/1.png -------------------------------------------------------------------------------- /images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/images/2.png -------------------------------------------------------------------------------- /images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/images/3.png -------------------------------------------------------------------------------- /images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/images/4.png -------------------------------------------------------------------------------- /images/code_dev01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/images/code_dev01.png -------------------------------------------------------------------------------- /images/code_dev02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/images/code_dev02.png -------------------------------------------------------------------------------- /images/mp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/images/mp.jpg -------------------------------------------------------------------------------- /models/faster/models--Systran--faster-whisper-medium/refs/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/models/faster/models--Systran--faster-whisper-medium/refs/main -------------------------------------------------------------------------------- /models/faster/models--Systran--faster-whisper-medium/snapshots/ebe41f70d5b6dfa9166e2c581c45c9c0cfc57b66/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/models/faster/models--Systran--faster-whisper-medium/snapshots/ebe41f70d5b6dfa9166e2c581c45c9c0cfc57b66/config.json -------------------------------------------------------------------------------- /models/faster/models--Systran--faster-whisper-medium/snapshots/ebe41f70d5b6dfa9166e2c581c45c9c0cfc57b66/tokenizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/models/faster/models--Systran--faster-whisper-medium/snapshots/ebe41f70d5b6dfa9166e2c581c45c9c0cfc57b66/tokenizer.json -------------------------------------------------------------------------------- /models/faster/models--Systran--faster-whisper-medium/snapshots/ebe41f70d5b6dfa9166e2c581c45c9c0cfc57b66/vocabulary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/models/faster/models--Systran--faster-whisper-medium/snapshots/ebe41f70d5b6dfa9166e2c581c45c9c0cfc57b66/vocabulary.txt -------------------------------------------------------------------------------- /models/tts/run/training/XTTS_v2.0_original_model_files/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/models/tts/run/training/XTTS_v2.0_original_model_files/config.json -------------------------------------------------------------------------------- /models/tts/run/training/XTTS_v2.0_original_model_files/vocab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/models/tts/run/training/XTTS_v2.0_original_model_files/vocab.json -------------------------------------------------------------------------------- /params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/params.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/requirements.txt -------------------------------------------------------------------------------- /runapp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/runapp.bat -------------------------------------------------------------------------------- /runtrain.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | .\venv\scripts\python.exe train.py -------------------------------------------------------------------------------- /static/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/static/images/2.png -------------------------------------------------------------------------------- /static/images/alipay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/static/images/alipay.png -------------------------------------------------------------------------------- /static/images/mp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/static/images/mp.jpg -------------------------------------------------------------------------------- /static/images/wx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/static/images/wx.png -------------------------------------------------------------------------------- /static/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/static/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /static/js/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/static/js/bootstrap.min.css -------------------------------------------------------------------------------- /static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/static/js/jquery.min.js -------------------------------------------------------------------------------- /static/js/layer/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/static/js/layer/layer.js -------------------------------------------------------------------------------- /static/js/layer/mobile/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/static/js/layer/mobile/layer.js -------------------------------------------------------------------------------- /static/js/layer/mobile/need/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/static/js/layer/mobile/need/layer.css -------------------------------------------------------------------------------- /static/js/layer/theme/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/static/js/layer/theme/default/icon-ext.png -------------------------------------------------------------------------------- /static/js/layer/theme/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/static/js/layer/theme/default/icon.png -------------------------------------------------------------------------------- /static/js/layer/theme/default/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/static/js/layer/theme/default/layer.css -------------------------------------------------------------------------------- /static/js/layer/theme/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/static/js/layer/theme/default/loading-0.gif -------------------------------------------------------------------------------- /static/js/layer/theme/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/static/js/layer/theme/default/loading-1.gif -------------------------------------------------------------------------------- /static/js/layer/theme/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/static/js/layer/theme/default/loading-2.gif -------------------------------------------------------------------------------- /static/voicelist/cn-XiaoyiNeural.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/static/voicelist/cn-XiaoyiNeural.wav -------------------------------------------------------------------------------- /static/voicelist/cn-YunxiaNeural.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/static/voicelist/cn-YunxiaNeural.wav -------------------------------------------------------------------------------- /static/voicelist/cn-nan.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/static/voicelist/cn-nan.wav -------------------------------------------------------------------------------- /static/voicelist/cn-sx.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/static/voicelist/cn-sx.wav -------------------------------------------------------------------------------- /static/voicelist/en-AriaNeural.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/static/voicelist/en-AriaNeural.wav -------------------------------------------------------------------------------- /static/voicelist/en-ClaraNeural.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/static/voicelist/en-ClaraNeural.wav -------------------------------------------------------------------------------- /static/voicelist/en-GuyNeural.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/static/voicelist/en-GuyNeural.wav -------------------------------------------------------------------------------- /static/voicelist/en-MichelleNeural.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/static/voicelist/en-MichelleNeural.wav -------------------------------------------------------------------------------- /static/voicelist/en-NatashaNeural.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/static/voicelist/en-NatashaNeural.wav -------------------------------------------------------------------------------- /static/voicelist/en-SteffanNeural.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/static/voicelist/en-SteffanNeural.wav -------------------------------------------------------------------------------- /static/voicelist/hk-HiuGaaiNeural.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/static/voicelist/hk-HiuGaaiNeural.wav -------------------------------------------------------------------------------- /static/voicelist/tw-HsiaoChenNeural.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/static/voicelist/tw-HsiaoChenNeural.wav -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/txt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/templates/txt.html -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/test.py -------------------------------------------------------------------------------- /testapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/testapi.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/train.py -------------------------------------------------------------------------------- /tts/模型目录.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/tts/模型目录.txt -------------------------------------------------------------------------------- /tts_cache/cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/tts_cache/cache -------------------------------------------------------------------------------- /tts_cache/d6c67f0e17e8737772c0a7172844fbe40ae535bea18eb69cb212f2adaee668dd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/tts_cache/d6c67f0e17e8737772c0a7172844fbe40ae535bea18eb69cb212f2adaee668dd -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/utils/cfg.py -------------------------------------------------------------------------------- /utils/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/utils/formatter.py -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/version.json -------------------------------------------------------------------------------- /xtts_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianchang512/clone-voice/HEAD/xtts_demo.py --------------------------------------------------------------------------------