mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-31 15:26:49 +00:00

Add missing titles Remove trailing spaces Fix grammar - login -> log in - show how a entry -> shows how an entry Mention default and minimal value (telldus) or link to add-on which is mentioned (tellstick)
47 lines
1.3 KiB
Markdown
47 lines
1.3 KiB
Markdown
---
|
|
layout: page
|
|
title: "Pico Text-to-Speech"
|
|
description: "Instructions on how to setup Pico Text-to-Speech with Home Assistant."
|
|
date: 2017-01-03 16:00
|
|
sidebar: true
|
|
comments: false
|
|
sharing: true
|
|
footer: true
|
|
logo: home-assistant.png
|
|
ha_category: Text-to-speech
|
|
ha_release: 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.
|
|
|
|
## {% linkable_title Configuration %}
|
|
|
|
To enable text-to-speech with Pico, add the following lines to your `configuration.yaml`:
|
|
|
|
```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 %}
|
|
|
|
## {% linkable_title Full configuration example %}
|
|
|
|
The configuration sample below shows how an entry can look like:
|
|
|
|
```yaml
|
|
# Example configuration.yaml entry
|
|
tts:
|
|
- platform: picotts
|
|
language: 'fr-FR'
|
|
```
|