
* Sets front matter defaults * Removes default front matter from section templates/pages * Removes default front matter from addon pages * Removes default front matter from integration pages * Removes default front matter from posts * Removes default front matter from docs pages * Removes default front matter from other pages * Fixes blog category pages
1.5 KiB
title, description, logo, ha_category, ha_release, redirect_from
title | description | logo | ha_category | ha_release | redirect_from | ||
---|---|---|---|---|---|---|---|
MaryTTS | Instructions on how to setup MaryTTS with Home Assistant. | marytts.png |
|
0.43 |
|
The marytts
text-to-speech platform uses MaryTTS Text-to-Speech engine to read a text with natural sounding voices.
Configuration
To enable text-to-speech with MaryTTS, add the following lines to your configuration.yaml
:
# Example configuration.yaml entry
tts:
- platform: marytts
{% configuration %}
host:
description: The MaryTTS server hostname or IP address.
required: false
type: string
default: localhost
port:
description: The MaryTTS server port.
required: false
type: integer
default: 59125
codec:
description: "The audio codec. Supported codecs are aiff
, au
and wav
."
required: false
type: string
default: "wav
"
voice:
description: The speaker voice.
required: false
type: string
default: "cmu-slt-hsmm
"
language:
description: "The language to use. Supported languages are de
, en-GB
, en-US
, fr
, it
, lb
, ru
, sv
, te
and tr
."
required: false
type: string
default: "en-US
"
{% endconfiguration %}
See documentation for details.
Full configuration example
A full configuration sample including optional variables:
# Example configuration.yaml entry
tts:
- platform: marytts
host: 'localhost'
port: 59125
codec: 'wav'
voice: 'cmu-slt-hsmm'
language: 'en-US'