https://github.com/realitycheck/picogo
A Go library(CGO) and frontend app to pico text to speech C library.
https://github.com/realitycheck/picogo
cgo pico tts tts-linux
Last synced: 5 months ago
JSON representation
A Go library(CGO) and frontend app to pico text to speech C library.
- Host: GitHub
- URL: https://github.com/realitycheck/picogo
- Owner: realitycheck
- License: mit
- Created: 2021-01-10T18:07:08.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-02-06T18:48:42.000Z (over 5 years ago)
- Last Synced: 2023-07-27T22:34:38.765Z (almost 3 years ago)
- Topics: cgo, pico, tts, tts-linux
- Language: Go
- Homepage:
- Size: 28.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# picogo
[](https://pkg.go.dev/github.com/realitycheck/picogo?status.svg)
[](https://goreportcard.com/report/github.com/realitycheck/picogo)
A Go library(CGO) and frontend app to **pico** text to speech C library.
## Usage
### `picogo` frontend app
```bash
# picogo installation
> git clone github.com/realitycheck/picogo
> git submodule update --init
> cd picogo
> make
> sudo make install
> picogo -h
```
```bash
# basic usage
> echo "picogo test message" | picogo -i | aplay --rate=16000 --channels=1 --format=S16_LE
```
### `picogo` library
Prerequisites:
1. [Pico TTS languages](https://github.com/realitycheck/picopi/tree/master/pico/lang/)
```bash
> go get github.com/realitycheck/picogo
```