项目介绍
开源的项目,感谢各位大佬的贡献!
官方介绍:一个简单的本地网页界面,使用ChatTTS将文字合成为语音,同时支持对外提供API接口。A simple native web interface that uses ChatTTS to synthesize text into speech, along with support for external API interfaces.
官方也有不少的部署流程
实机信息
克隆项目
git clone https://github.com/jianchang512/ChatTTS-ui.git chat-tts-ui
虚拟环境
防止项目和项目之间的依赖干扰,这里用虚拟环境。
本机环境是 python 3.10
python -m venv env
source env/bin/activate
同时安装依赖
pip install -r requirements.txt
启动服务
python app.py
可以看到,此时会进行一些模型的下载。
这里自动选择了 “ModelScope” 国内的地址,下载还是非常快的。
启动后我的访问地址是:
127.0.0.1:9966
内网开放
我需要内网开放,我的方式是:修改 app.py
,在代码的最底部,修改为
try:WEB_ADDRESS = "0.0.0.0:9966"host = WEB_ADDRESS.split(':')print(f'Start:{WEB_ADDRESS}')threading.Thread(target=utils.openweb,args=(f'http://{WEB_ADDRESS}',)).start()serve(app,host=host[0], port=int(host[1]))
except Exception as e:print(e)
访问测试
在另一台机器上进行访问测试