Mycroft compatible TTS Plugin for Remote Mozilla Text-to-Speech. Note that this module requires a local or remote API server to be available.
using the mycroft.conf
"tts": {
"module": "mozilla_remote",
"mozilla_remote": {
"api_url": "http://0.0.0.0:5002/api/tts"
}
}
using the neon config
tts:
module: mozilla_remote
mozilla_remote: {"api_url": "http://0.0.0.0:5002/api/tts"}
Standalone usage
from neon_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")