GUI for marryTTS

I’m using marrytts on server in docker file. As long, as you use english languages, everything works. But for other languages, you need to add a locale entry in profiles.json. Would be great if this could be done in GUI.
available locales are listed by

http://server-ip:59125/locales

EXAMPLE:

"text_to_speech": {
    "marytts": {
        "locale": "de",
        "url": "http://10.2.254.1:59125",
        "voice": "bits3-hsmm"
    },

Also in dokumentation is no docker-compose example:
Here with two languages located in same folder as docker-compose file

marytts:
image: synesthesiam/marytts:5.2
container_name: marytts
restart: unless-stopped
ports:
- "59125:59125"
volumes:
- "./marytts-5.2/lib/voice-bits1-hsmm-5.2.jar:/marytts/lib/voice-bits1-hsmm-5.2.jar"
- "./marytts-5.2/lib/voice-bits3-hsmm-5.2.jar:/marytts/lib/voice-bits3-hsmm-5.2.jar"
1 Like