Developed based on ChatTTS by @2noise, web developed by @Gouryella
Try It Free at https://chattts.201lab.top
Web UI | Mobile UI |
- Update API, add detailed parameter adjustment.
- Update webui.
- Update mobile view
git clone https://github.com/Gouryella/ChatTTS-webui.git
cd ChatTTS-webui
npm install
yes | conda create -n chattts python=3.10
conda activate chattts
yes | conda install pytorch==2.2.2 torchvision==0.17.2 torchaudio==2.2.2 pytorch-cuda=12.1 -c pytorch -c nvidia
# If you are using Mac OS or do not support CUDA, use
pip install torch==2.2.2 torchvision==0.17.2 torchaudio==2.2.2
pip install -r requirements.txt
cd api
git clone https://huggingface.co/2Noise/ChatTTS.git models
cd ..
npm run dev
python api/server.py
wget https://raw.githubusercontent.com/Gouryella/ChatTTS-webui/main/docker/Dockerfile
docker build -t chattts_webui .
docker run -itd --name chattts_webui --gpus all -p 3000:3000 -p 8000:8000 chattts_webui