20 lines
568 B
Markdown
20 lines
568 B
Markdown
# Emotion Museum TTS Service
|
|
|
|
Install on `101.200.208.45`:
|
|
|
|
```bash
|
|
cd /data/programs/emotion-museum/tts-service
|
|
python3 -m venv .venv
|
|
. .venv/bin/activate
|
|
pip install -r requirements.txt
|
|
|
|
git clone https://github.com/myshell-ai/MeloTTS.git /data/programs/MeloTTS
|
|
cd /data/programs/MeloTTS
|
|
/data/programs/emotion-museum/tts-service/.venv/bin/pip install -e .
|
|
/data/programs/emotion-museum/tts-service/.venv/bin/python -m unidic download
|
|
|
|
cd /data/programs/emotion-museum/tts-service
|
|
uvicorn app:app --host 127.0.0.1 --port 19110
|
|
curl http://127.0.0.1:19110/health
|
|
```
|