OpenVoiceOS / ovos-docker

Open Voice OS container images and docker-compose.yml files for x86_64 and aarch64 CPU architectures.
https://openvoiceos.github.io/ovos-docker/
Apache License 2.0
39 stars 11 forks source link

how to locally host mimic3 or piper? #26

Closed denics closed 1 year ago

denics commented 1 year ago

using ovos-docker what is the best way to run its self hosted TTS / STT ?

goldyfruit commented 1 year ago

You can have a look to this repo https://github.com/OpenVoiceOS/ovos-docker-tts to install a self-hosted containerised TTS (the repository is not yet public but I added you so you should have a read access).

I have to write the README for this repo.

mkdir -p ~/ovos-tts-stt/config
docker compose up -d ovos_tts_piper

Here is the content of ~/ovos-tts-stt/config/mycroft.conf for the TTS configuration

{
  "tts": {
    "ovos-tts-plugin-piper": {
      "voice": "amy-low"
    },
    "ovos-tts-plugin-mimic3": {
      "voice": "en_UK/apope_low"
    }
  }
}
goldyfruit commented 1 year ago

For the STT you could have a look here https://github.com/OpenVoiceOS/ovos-docker-stt (this one is public), there is a documentation in there.

goldyfruit commented 1 year ago

Feel free to re-open if needed. :+1: