├── 0.3.0.dev2 ├── EN_README.md ├── LICENSE ├── MoeGoe.py ├── README.md ├── Sample.txt ├── attentions.py ├── commons.py ├── hubert_model.py ├── jieba └── dict.txt ├── mel_processing.py ├── models.py ├── modules.py ├── monotonic_align ├── __init__.py └── core.py ├── my_tools └── make_subtitle.py ├── requirements.txt ├── silent └── silent-audio07_re_32bit.wav ├── text ├── LICENSE ├── __init__.py ├── cleaners.py ├── english.py ├── japanese.py ├── korean.py ├── mandarin.py ├── sanskrit.py ├── shanghainese.py └── thai.py ├── transforms.py ├── txt_to_audio.py └── utils.py /0.3.0.dev2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphanemeless/VITS_TXT_to_Audio/HEAD/0.3.0.dev2 -------------------------------------------------------------------------------- /EN_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphanemeless/VITS_TXT_to_Audio/HEAD/EN_README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphanemeless/VITS_TXT_to_Audio/HEAD/LICENSE -------------------------------------------------------------------------------- /MoeGoe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphanemeless/VITS_TXT_to_Audio/HEAD/MoeGoe.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphanemeless/VITS_TXT_to_Audio/HEAD/README.md -------------------------------------------------------------------------------- /Sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphanemeless/VITS_TXT_to_Audio/HEAD/Sample.txt -------------------------------------------------------------------------------- /attentions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphanemeless/VITS_TXT_to_Audio/HEAD/attentions.py -------------------------------------------------------------------------------- /commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphanemeless/VITS_TXT_to_Audio/HEAD/commons.py -------------------------------------------------------------------------------- /hubert_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphanemeless/VITS_TXT_to_Audio/HEAD/hubert_model.py -------------------------------------------------------------------------------- /jieba/dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphanemeless/VITS_TXT_to_Audio/HEAD/jieba/dict.txt -------------------------------------------------------------------------------- /mel_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphanemeless/VITS_TXT_to_Audio/HEAD/mel_processing.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphanemeless/VITS_TXT_to_Audio/HEAD/models.py -------------------------------------------------------------------------------- /modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphanemeless/VITS_TXT_to_Audio/HEAD/modules.py -------------------------------------------------------------------------------- /monotonic_align/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphanemeless/VITS_TXT_to_Audio/HEAD/monotonic_align/__init__.py -------------------------------------------------------------------------------- /monotonic_align/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphanemeless/VITS_TXT_to_Audio/HEAD/monotonic_align/core.py -------------------------------------------------------------------------------- /my_tools/make_subtitle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphanemeless/VITS_TXT_to_Audio/HEAD/my_tools/make_subtitle.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphanemeless/VITS_TXT_to_Audio/HEAD/requirements.txt -------------------------------------------------------------------------------- /silent/silent-audio07_re_32bit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphanemeless/VITS_TXT_to_Audio/HEAD/silent/silent-audio07_re_32bit.wav -------------------------------------------------------------------------------- /text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphanemeless/VITS_TXT_to_Audio/HEAD/text/LICENSE -------------------------------------------------------------------------------- /text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphanemeless/VITS_TXT_to_Audio/HEAD/text/__init__.py -------------------------------------------------------------------------------- /text/cleaners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphanemeless/VITS_TXT_to_Audio/HEAD/text/cleaners.py -------------------------------------------------------------------------------- /text/english.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphanemeless/VITS_TXT_to_Audio/HEAD/text/english.py -------------------------------------------------------------------------------- /text/japanese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphanemeless/VITS_TXT_to_Audio/HEAD/text/japanese.py -------------------------------------------------------------------------------- /text/korean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphanemeless/VITS_TXT_to_Audio/HEAD/text/korean.py -------------------------------------------------------------------------------- /text/mandarin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphanemeless/VITS_TXT_to_Audio/HEAD/text/mandarin.py -------------------------------------------------------------------------------- /text/sanskrit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphanemeless/VITS_TXT_to_Audio/HEAD/text/sanskrit.py -------------------------------------------------------------------------------- /text/shanghainese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphanemeless/VITS_TXT_to_Audio/HEAD/text/shanghainese.py -------------------------------------------------------------------------------- /text/thai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphanemeless/VITS_TXT_to_Audio/HEAD/text/thai.py -------------------------------------------------------------------------------- /transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphanemeless/VITS_TXT_to_Audio/HEAD/transforms.py -------------------------------------------------------------------------------- /txt_to_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphanemeless/VITS_TXT_to_Audio/HEAD/txt_to_audio.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphanemeless/VITS_TXT_to_Audio/HEAD/utils.py --------------------------------------------------------------------------------