Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/OpenVoiceOS/ovos-tts-plugin-pico
pico-tts-plugin
https://github.com/OpenVoiceOS/ovos-tts-plugin-pico
hacktoberfest
Last synced: 3 months ago
JSON representation
pico-tts-plugin
- Host: GitHub
- URL: https://github.com/OpenVoiceOS/ovos-tts-plugin-pico
- Owner: OpenVoiceOS
- License: apache-2.0
- Created: 2021-06-22T01:12:19.000Z (over 3 years ago)
- Default Branch: dev
- Last Pushed: 2024-01-13T22:53:34.000Z (about 1 year ago)
- Last Synced: 2024-05-10T00:12:06.570Z (9 months ago)
- Topics: hacktoberfest
- Language: Python
- Homepage:
- Size: 50.8 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ovos-plugins - ovos-tts-plugin-pico
README
## Description
OpenVoiceOS TTS plugin for [PicoTTS](https://github.com/naggety/picotts)
## Install
```bash
pip install ovos-tts-plugin-pico
````pico2wave` needs to be available, in a pi this can be installed with
```bash
apt-get install libttspico0
apt-get install libttspico-utils
```you can also install from [source](https://github.com/naggety/picotts)
## Configuration
```json
"tts": {
"module": "ovos-tts-plugin-pico"
}
```the Voice corresponds to a language code, it should be auto detected from global config
you can also set it explicitly to one of `"de-DE", "es-ES", "fr-FR", "it-IT", "en-US"`
```json
"tts": {
"module": "ovos-tts-plugin-pico",
"ovos-tts-plugin-pico": {
"voice": "en-US"
}
}
```## Docker
build it
```bash
docker build . -t ovos/pico
```run it
```bash
docker run -p 8080:9666 ovos/pico
```use it `http://localhost:8080/synthesize/hello`