Skip to content

Commit b0e2b01

Browse files
committed
Update README links
1 parent 2ab5380 commit b0e2b01

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

README.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Voices are trained with [VITS](https://github.com/jaywalnut310/vits/) and export
1818

1919
Our goal is to support Home Assistant and the [Year of Voice](https://www.home-assistant.io/blog/2022/12/20/year-of-voice/).
2020

21-
[Download voices](https://huggingface.co/rhasspy/piper-voices/tree/main) for the supported languages:
21+
[Download voices](https://huggingface.co/rhasspy/piper-voices/tree/v1.0.0) for the supported languages:
2222

2323
* Catalan (ca_ES)
2424
* Danish (da_DK)
@@ -44,14 +44,21 @@ Our goal is to support Home Assistant and the [Year of Voice](https://www.home-a
4444
* Vietnamese (vi_VN)
4545
* Chinese (zh_CN)
4646

47+
You will need two files per voice:
48+
49+
1. A `.onnx` model file, such as [`en_US-lessac-medium.onnx`](https://huggingface.co/rhasspy/piper-voices/resolve/v1.0.0/en/en_US/lessac/medium/en_US-lessac-medium.onnx)
50+
2. A `.onnx.json` config file, such as [`en_US-lessac-medium.onnx.json`](https://huggingface.co/rhasspy/piper-voices/resolve/v1.0.0/en/en_US/lessac/medium/en_US-lessac-medium.onnx.json)
51+
52+
The `MODEL_CARD` file for each voice contains important licensing information. Piper is intended for text to speech research, and does not impose any additional restrictions on voice models. Some voices may have restrictive licenses, however, so please review them carefully!
53+
4754

4855
## Installation
4956

5057
Download a release:
5158

52-
* [amd64](https://github.com/rhasspy/piper/releases/download/v1.0.0/piper_amd64.tar.gz) (64-bit desktop Linux)
53-
* [arm64](https://github.com/rhasspy/piper/releases/download/v1.0.0/piper_arm64.tar.gz) (64-bit Raspberry Pi 4)
54-
* [armv7](https://github.com/rhasspy/piper/releases/download/v1.0.0/piper_armv7.tar.gz) (32-bit Raspberry Pi 3/4)
59+
* [amd64](https://github.com/rhasspy/piper/releases/download/v1.1.0/piper_amd64.tar.gz) (64-bit desktop Linux)
60+
* [arm64](https://github.com/rhasspy/piper/releases/download/v1.1.0/piper_arm64.tar.gz) (64-bit Raspberry Pi 4)
61+
* [armv7](https://github.com/rhasspy/piper/releases/download/v1.1.0/piper_armv7.tar.gz) (32-bit Raspberry Pi 3/4)
5562

5663
If you want to build from source, see the [Makefile](Makefile) and [C++ source](src/cpp).
5764
You must download and extract [piper-phonemize](https://github.com/rhasspy/piper-phonemize) to `lib/Linux-$(uname -m)/piper_phonemize` before building.
@@ -67,7 +74,7 @@ For example:
6774

6875
``` sh
6976
echo 'Welcome to the world of speech synthesis!' | \
70-
./piper --model en-us-lessac-medium.onnx --output_file welcome.wav
77+
./piper --model en_US-lessac-medium.onnx --output_file welcome.wav
7178
```
7279

7380
For multi-speaker models, use `--speaker <number>` to change speakers (default: 0).

0 commit comments

Comments
 (0)