Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/poeschl/remote-picotts
A custom component for Home Assistant which integrates my picoTTS Addon on HASS.io,
https://github.com/poeschl/remote-picotts
component hacs hassio home-assistant picotts-addon remote-picotts
Last synced: about 1 month ago
JSON representation
A custom component for Home Assistant which integrates my picoTTS Addon on HASS.io,
- Host: GitHub
- URL: https://github.com/poeschl/remote-picotts
- Owner: Poeschl
- License: apache-2.0
- Created: 2019-09-21T14:08:18.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-06-03T14:25:15.000Z (over 2 years ago)
- Last Synced: 2023-08-22T00:46:35.255Z (over 1 year ago)
- Topics: component, hacs, hassio, home-assistant, picotts-addon, remote-picotts
- Language: Python
- Homepage:
- Size: 11.7 KB
- Stars: 11
- Watchers: 4
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Home Assistant Component for a remote picoTTS installation.
[![hacs_badge](https://img.shields.io/badge/HACS-default-orange.svg)](https://github.com/custom-components/hacs)
This is a component for Home Assistant which integrates picoTTS from a remote server.
Its recommended to run the server via my [Home Assistant Supervisor Addon](https://github.com/Poeschl/Hassio-Addons/tree/master/picoTTS).# Installation
## HACS
Install it in the `Integrations` tab on the [Home Asssistant Community Store](https://github.com/custom-components/hacs).
## Manual way
To use it, copy the `picotts_remote` folder inside your `config/custom_components` folder on your home assistant installation first.# Configuration
Add following config to your yaml if you are using the Supervisor Addon
```yaml
tts:
- platform: picotts_remote```
The integration will connect to picoTTS after an Home Assistant restart.## Other host
For setting your own host and port:
```yaml
tts:
- platform: picotts_remote
host:
port:```
## Language
The languge can be set to the languages: `en-US`, `en-GB`, `de-DE`, `es-ES`, `fr-FR` and `it-IT` via the `language` key.
```yaml
tts:
- platform: picotts_remote
language: "de-DE"```