mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-23 17:27:19 +00:00
Adjust MaryTTS docs (#11759)
This commit is contained in:
parent
6e7d59c2a7
commit
471719647b
@ -31,24 +31,34 @@ port:
|
|||||||
type: integer
|
type: integer
|
||||||
default: 59125
|
default: 59125
|
||||||
codec:
|
codec:
|
||||||
description: "The audio codec. Supported codecs are `aiff`, `au` and `wav`."
|
description: "The audio codec. Supported codecs are `AIFF_FILE`, `AU_FILE` and `WAVE_FILE`."
|
||||||
required: false
|
required: false
|
||||||
type: string
|
type: string
|
||||||
default: "`wav`"
|
default: "`WAVE_FILE`"
|
||||||
voice:
|
voice:
|
||||||
description: The speaker voice.
|
description: The speaker voice.
|
||||||
required: false
|
required: false
|
||||||
type: string
|
type: string
|
||||||
default: "`cmu-slt-hsmm`"
|
default: "`cmu-slt-hsmm`"
|
||||||
language:
|
language:
|
||||||
description: "The language to use. Supported languages are `de`, `en-GB`, `en-US`, `fr`, `it`, `lb`, `ru`, `sv`, `te` and `tr`."
|
description: "The language to use. Supported languages are `de`, `en_GB`, `en_US`, `fr`, `it`, `lb`, `ru`, `sv`, `te` and `tr`."
|
||||||
required: false
|
required: false
|
||||||
type: string
|
type: string
|
||||||
default: "`en-US`"
|
default: "`en_US`"
|
||||||
|
effect:
|
||||||
|
description: "A dictionary of effects which should be applied to the speach output."
|
||||||
|
required: false
|
||||||
|
type: map
|
||||||
{% endconfiguration %}
|
{% endconfiguration %}
|
||||||
|
|
||||||
See [documentation](http://mary.dfki.de/documentation/index.html) for details.
|
See [documentation](http://mary.dfki.de/documentation/index.html) for details.
|
||||||
|
|
||||||
|
## Speach effects
|
||||||
|
|
||||||
|
For more information about the different effects take a look at the demo page of your MaryTTS installation (http://localhost:59125/).
|
||||||
|
|
||||||
|
There you can read about each effect and also test them on the fly.
|
||||||
|
|
||||||
## Full configuration example
|
## Full configuration example
|
||||||
|
|
||||||
A full configuration sample including optional variables:
|
A full configuration sample including optional variables:
|
||||||
@ -59,7 +69,19 @@ tts:
|
|||||||
- platform: marytts
|
- platform: marytts
|
||||||
host: 'localhost'
|
host: 'localhost'
|
||||||
port: 59125
|
port: 59125
|
||||||
codec: 'wav'
|
codec: 'WAVE_FILE'
|
||||||
voice: 'cmu-slt-hsmm'
|
voice: 'cmu-slt-hsmm'
|
||||||
language: 'en-US'
|
language: 'en_US'
|
||||||
|
effect:
|
||||||
|
Volume: "amount:2.0;",
|
||||||
|
TractScaler: "amount:1.5;",
|
||||||
|
F0Scale: "f0Scale:2.0;",
|
||||||
|
F0Add: "f0Add:50.0;",
|
||||||
|
Rate: "durScale:1.5;",
|
||||||
|
Robot: "amount:100.0;",
|
||||||
|
Whisper: "amount:100.0;",
|
||||||
|
Stadium: "amount:100.0",
|
||||||
|
Chorus: "delay1:466;amp1:0.54;delay2:600;amp2:-0.10;delay3:250;amp3:0.30",
|
||||||
|
FIRFilter: "type:3;fc1:500.0;fc2:2000.0",
|
||||||
|
JetPilot: ""
|
||||||
```
|
```
|
||||||
|
Loading…
x
Reference in New Issue
Block a user