mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-28 05:46:48 +00:00

* 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.2 KiB
1.2 KiB
title, description, logo, ha_category, ha_release, redirect_from
title | description | logo | ha_category | ha_release | redirect_from | ||
---|---|---|---|---|---|---|---|
Pico Text-to-Speech | Instructions on how to setup Pico Text-to-Speech with Home Assistant. | home-assistant.png |
|
0.36 |
|
The picotts
text-to-speech platform uses offline pico Text-to-Speech engine to read a text with natural sounding voices.
This requires to install the pico tts library on the system, typically on debian just do sudo apt-get install libttspico-utils
On some Raspbian release, this package is missing but you can just copy the arm deb package from debian.
Configuration
To enable text-to-speech with Pico, add the following lines to your configuration.yaml
:
# Example configuration.yaml entry
tts:
- platform: picotts
{% configuration %}
language:
description: "The language to use. Supported languages are en-US
, en-GB
, de-DE
, es-ES
, fr-FR
and it-IT
."
required: false
type: string
default: "en-US
"
{% endconfiguration %}
Full configuration example
The configuration sample below shows how an entry can look like:
# Example configuration.yaml entry
tts:
- platform: picotts
language: 'fr-FR'