TTS Plugin for Remote Mozilla or Coqui Text-to-Speech. Note that this module requires a local or remote API server to be available.
Need to set up a Coqui server? Check out this actively maintained Coqui fork.
Looking for a Coqui plugin that also loads the model? Check out ovos-tts-plugin-coqui
using mycroft.conf
"tts": {
"module": "mozilla_remote",
"mozilla_remote": {
"api_url": "http://0.0.0.0:5002/api/tts"
}
}
Using neon.yaml
tts:
module: mozilla_remote
mozilla_remote: { "api_url": "http://0.0.0.0:5002/api/tts" }
Standalone usage
from tts_plugin_mozilla_remote import MozillaRemoteTTS
engine = MozillaRemoteTTS(config={"api_url": "http://0.0.0.0:5002/api/tts"})
engine.get_tts("hello world", "test.wav")