MeloTTS WebUI & API – multilingual Docker TTS with offline-ready models
1.5K
Easy-to-run text-to-speech Docker images with a browser UI and HTTP API included.
This Hangry Labs fork is built for people who want text to speech to work without a long setup. Install Docker, run one command, open the local UI, or call the API from your own application.
Voice examples are available here:
https://hangry-labs.github.io/MeloTTS/examples/
The examples page includes MP3 previews for the main English voices plus Spanish, French, Chinese, Japanese, and Korean.
Full multilingual image:
docker run -p 8888:8888 --gpus all hangrylabs/melotts:latest
EN-focused image:
docker run -p 8888:8888 --gpus all hangrylabs/melotts:latest_en
Then open:
The container includes the web UI and the HTTP API on the same port.
format is requestedDefault API behavior returns WAV for backward compatibility:
curl -X POST "http://localhost:8888/tts/convert/tts" ^
-H "Content-Type: application/json" ^
-d "{\"text\":\"Hello from Hangry Labs Melo T T S\",\"language\":\"EN\",\"speaker_id\":\"EN-BR\"}" ^
-o hello.wav
Request MP3 when you want compact output:
curl -X POST "http://localhost:8888/tts/convert/tts" ^
-H "Content-Type: application/json" ^
-d "{\"text\":\"Hello from Hangry Labs Melo T T S\",\"language\":\"EN\",\"speaker_id\":\"EN-BR\",\"format\":\"mp3\"}" ^
-o hello.mp3
Supported formats are listed by:
curl http://localhost:8888/tts/formats
latest, <version>latest_en, <version>_enExample release tags:
docker run -p 8888:8888 --gpus all hangrylabs/melotts:v0.0.8
docker run -p 8888:8888 --gpus all hangrylabs/melotts:v0.0.8_en
Docker Hub comments are not monitored regularly. GitHub Issues are the best place to report bugs.
This is an independently maintained fork of the original MeloTTS project by Wenliang Zhao, Xumin Yu, and Zengyi Qin:
https://github.com/myshell-ai/MeloTTS
License and attribution are preserved in the repository. Original MeloTTS copyright remains with MyShell.ai; Hangry Labs maintains the Docker packaging, Web UI/API integration, examples page, documentation, release tooling, and other modifications in this fork.
Content type
Image
Digest
sha256:a8b995437…
Size
11.3 GB
Last updated
4 months ago
docker pull hangrylabs/melotts