1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00
dockerfiles/piper/README.md

20 lines
517 B
Markdown
Raw Normal View History

2024-03-10 04:18:53 +00:00
piper
=====
[piper][1] is a fast, local neural text to speech system that sounds great and is optimized for the Raspberry Pi 4.
```bash
# Create an alias
2024-03-26 09:19:18 +00:00
$ alias piper='docker run -i --rm -u $(id -u):$(id -g) -v $PWD:/tmp vimagick/piper -m /opt/piper/models/en_US-amy-medium.onnx'
2024-03-10 04:18:53 +00:00
# Do text-to-speech
$ echo 'Welcome to the world of speech synthesis!' | piper -f /tmp/welcome.wav
# Play audio
$ play welcome.wav
```
2024-03-25 09:48:08 +00:00
List of voices: https://rhasspy.github.io/piper-samples/
2024-03-10 04:18:53 +00:00
[1]: https://github.com/rhasspy/piper