OVOS TTS plugin for Mimic3
Install the necessary system packages:
sudo apt-get install libespeak-ng1
On 32-bit ARM platforms (a.k.a. armv7l
or armhf
), you will also need some extra libraries:
sudo apt-get install libatomic1 libgomp1 libatlas-base-dev
install the TTS plugin in Mycroft:
pip install ovos-tts-plugin-mimic3[all]
Removing [all]
will install support for English only.
Additional language support can be selectively installed by replacing all
with a two-character language code, such as de
(German) or fr
(French).
See setup.py
for an up-to-date list of language codes.
"tts": {
"module": "ovos-tts-plugin-mimic3",
"ovos-tts-plugin-mimic3": {
"voice": "en_UK/apope_low"
}
}
"tts": {
"module": "ovos-tts-plugin-mimic3",
"ovos-tts-plugin-mimic3": {
"voice": "en_US/cmu-arctic_low", // default voice
"speaker": "fem", // default speaker
"length_scale": 1.0, // speaking rate
"noise_scale": 0.667, // speaking variablility
"noise_w": 1.0 // phoneme duration variablility
}
}