├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── __pycache__ └── __init__.cpython-311.pyc ├── assets ├── 03dd6465a900e81a6e1812302efc2b4.png ├── 1718816711480.png ├── 1718851026553.png └── 1719392506548.jpg ├── install.bat ├── nodes ├── ChatTTS │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ └── core.cpython-311.pyc │ ├── core.py │ ├── experimental │ │ └── llm.py │ ├── infer │ │ ├── __pycache__ │ │ │ └── api.cpython-311.pyc │ │ └── api.py │ ├── model │ │ ├── __pycache__ │ │ │ ├── dvae.cpython-311.pyc │ │ │ └── gpt.cpython-311.pyc │ │ ├── dvae.py │ │ └── gpt.py │ ├── res │ │ └── homophones_map.json │ └── utils │ │ ├── __pycache__ │ │ ├── gpu_utils.cpython-311.pyc │ │ ├── infer_utils.cpython-311.pyc │ │ └── io_utils.cpython-311.pyc │ │ ├── dl.py │ │ ├── gpu.py │ │ ├── gpu_utils.py │ │ ├── infer.py │ │ ├── infer_utils.py │ │ ├── io.py │ │ ├── io_utils.py │ │ └── log.py ├── __pycache__ │ ├── chat_tts.cpython-311.pyc │ └── chat_tts_run.cpython-311.pyc ├── chat_tts.py ├── chat_tts_run.py ├── openvoice │ ├── __init__.py │ ├── api.py │ ├── attentions.py │ ├── commons.py │ ├── mel_processing.py │ ├── models.py │ ├── modules.py │ ├── openvoice_app.py │ ├── se_extractor.py │ ├── text │ │ ├── __init__.py │ │ ├── cleaners.py │ │ ├── english.py │ │ ├── mandarin.py │ │ └── symbols.py │ ├── transforms.py │ └── utils.py ├── openvoice_run.py └── zh_normalization │ ├── README.md │ ├── __init__.py │ ├── char_convert.py │ ├── chronology.py │ ├── constants.py │ ├── num.py │ ├── phonecode.py │ ├── quantifier.py │ └── text_normlization.py ├── requirements.txt └── web └── loadSpeaker.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/__init__.py -------------------------------------------------------------------------------- /__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /assets/03dd6465a900e81a6e1812302efc2b4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/assets/03dd6465a900e81a6e1812302efc2b4.png -------------------------------------------------------------------------------- /assets/1718816711480.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/assets/1718816711480.png -------------------------------------------------------------------------------- /assets/1718851026553.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/assets/1718851026553.png -------------------------------------------------------------------------------- /assets/1719392506548.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/assets/1719392506548.jpg -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/install.bat -------------------------------------------------------------------------------- /nodes/ChatTTS/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import Chat -------------------------------------------------------------------------------- /nodes/ChatTTS/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/ChatTTS/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /nodes/ChatTTS/__pycache__/core.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/ChatTTS/__pycache__/core.cpython-311.pyc -------------------------------------------------------------------------------- /nodes/ChatTTS/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/ChatTTS/core.py -------------------------------------------------------------------------------- /nodes/ChatTTS/experimental/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/ChatTTS/experimental/llm.py -------------------------------------------------------------------------------- /nodes/ChatTTS/infer/__pycache__/api.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/ChatTTS/infer/__pycache__/api.cpython-311.pyc -------------------------------------------------------------------------------- /nodes/ChatTTS/infer/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/ChatTTS/infer/api.py -------------------------------------------------------------------------------- /nodes/ChatTTS/model/__pycache__/dvae.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/ChatTTS/model/__pycache__/dvae.cpython-311.pyc -------------------------------------------------------------------------------- /nodes/ChatTTS/model/__pycache__/gpt.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/ChatTTS/model/__pycache__/gpt.cpython-311.pyc -------------------------------------------------------------------------------- /nodes/ChatTTS/model/dvae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/ChatTTS/model/dvae.py -------------------------------------------------------------------------------- /nodes/ChatTTS/model/gpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/ChatTTS/model/gpt.py -------------------------------------------------------------------------------- /nodes/ChatTTS/res/homophones_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/ChatTTS/res/homophones_map.json -------------------------------------------------------------------------------- /nodes/ChatTTS/utils/__pycache__/gpu_utils.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/ChatTTS/utils/__pycache__/gpu_utils.cpython-311.pyc -------------------------------------------------------------------------------- /nodes/ChatTTS/utils/__pycache__/infer_utils.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/ChatTTS/utils/__pycache__/infer_utils.cpython-311.pyc -------------------------------------------------------------------------------- /nodes/ChatTTS/utils/__pycache__/io_utils.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/ChatTTS/utils/__pycache__/io_utils.cpython-311.pyc -------------------------------------------------------------------------------- /nodes/ChatTTS/utils/dl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/ChatTTS/utils/dl.py -------------------------------------------------------------------------------- /nodes/ChatTTS/utils/gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/ChatTTS/utils/gpu.py -------------------------------------------------------------------------------- /nodes/ChatTTS/utils/gpu_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/ChatTTS/utils/gpu_utils.py -------------------------------------------------------------------------------- /nodes/ChatTTS/utils/infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/ChatTTS/utils/infer.py -------------------------------------------------------------------------------- /nodes/ChatTTS/utils/infer_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/ChatTTS/utils/infer_utils.py -------------------------------------------------------------------------------- /nodes/ChatTTS/utils/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/ChatTTS/utils/io.py -------------------------------------------------------------------------------- /nodes/ChatTTS/utils/io_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/ChatTTS/utils/io_utils.py -------------------------------------------------------------------------------- /nodes/ChatTTS/utils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/ChatTTS/utils/log.py -------------------------------------------------------------------------------- /nodes/__pycache__/chat_tts.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/__pycache__/chat_tts.cpython-311.pyc -------------------------------------------------------------------------------- /nodes/__pycache__/chat_tts_run.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/__pycache__/chat_tts_run.cpython-311.pyc -------------------------------------------------------------------------------- /nodes/chat_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/chat_tts.py -------------------------------------------------------------------------------- /nodes/chat_tts_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/chat_tts_run.py -------------------------------------------------------------------------------- /nodes/openvoice/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nodes/openvoice/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/openvoice/api.py -------------------------------------------------------------------------------- /nodes/openvoice/attentions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/openvoice/attentions.py -------------------------------------------------------------------------------- /nodes/openvoice/commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/openvoice/commons.py -------------------------------------------------------------------------------- /nodes/openvoice/mel_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/openvoice/mel_processing.py -------------------------------------------------------------------------------- /nodes/openvoice/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/openvoice/models.py -------------------------------------------------------------------------------- /nodes/openvoice/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/openvoice/modules.py -------------------------------------------------------------------------------- /nodes/openvoice/openvoice_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/openvoice/openvoice_app.py -------------------------------------------------------------------------------- /nodes/openvoice/se_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/openvoice/se_extractor.py -------------------------------------------------------------------------------- /nodes/openvoice/text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/openvoice/text/__init__.py -------------------------------------------------------------------------------- /nodes/openvoice/text/cleaners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/openvoice/text/cleaners.py -------------------------------------------------------------------------------- /nodes/openvoice/text/english.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/openvoice/text/english.py -------------------------------------------------------------------------------- /nodes/openvoice/text/mandarin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/openvoice/text/mandarin.py -------------------------------------------------------------------------------- /nodes/openvoice/text/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/openvoice/text/symbols.py -------------------------------------------------------------------------------- /nodes/openvoice/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/openvoice/transforms.py -------------------------------------------------------------------------------- /nodes/openvoice/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/openvoice/utils.py -------------------------------------------------------------------------------- /nodes/openvoice_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/openvoice_run.py -------------------------------------------------------------------------------- /nodes/zh_normalization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/zh_normalization/README.md -------------------------------------------------------------------------------- /nodes/zh_normalization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/zh_normalization/__init__.py -------------------------------------------------------------------------------- /nodes/zh_normalization/char_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/zh_normalization/char_convert.py -------------------------------------------------------------------------------- /nodes/zh_normalization/chronology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/zh_normalization/chronology.py -------------------------------------------------------------------------------- /nodes/zh_normalization/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/zh_normalization/constants.py -------------------------------------------------------------------------------- /nodes/zh_normalization/num.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/zh_normalization/num.py -------------------------------------------------------------------------------- /nodes/zh_normalization/phonecode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/zh_normalization/phonecode.py -------------------------------------------------------------------------------- /nodes/zh_normalization/quantifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/zh_normalization/quantifier.py -------------------------------------------------------------------------------- /nodes/zh_normalization/text_normlization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/nodes/zh_normalization/text_normlization.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/requirements.txt -------------------------------------------------------------------------------- /web/loadSpeaker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shadowcz007/Comfyui-ChatTTS/HEAD/web/loadSpeaker.js --------------------------------------------------------------------------------