diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2024-11-20 08:27:13 -0500 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2024-11-20 08:54:00 -0500 |
commit | 64d94889a2a118626902ce69143f9815f4b78b91 (patch) | |
tree | fc10616ba92ee996943f401d5b24352611c4210b | |
parent | fdce5c05ef7444014547f03d2bc0fecf8447a92b (diff) | |
download | rockbox-64d94889a2.tar.gz rockbox-64d94889a2.zip |
voice: Enable nightly generation of a Spanish voice.
This uses Piper with a Peninsular Spanish voice.
I'd like to add Mexican Spanish as well, but then we'd have to use a
different TTS engine. Espeak is relatively crappy, and gtts relies on a
remote service.
Change-Id: I5099f5cc4db5cc037efb5a77c023d4da4c73e813
-rw-r--r-- | tools/builds.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/builds.pm b/tools/builds.pm index 0b7c768888..b1e0aa46d1 100644 --- a/tools/builds.pm +++ b/tools/builds.pm @@ -703,13 +703,13 @@ sub simbuilds { 'gtts' => '-l es', 'piper' => 'es_ES-sharvard-medium.onnx', }, - 'enabled' => 0, + 'enabled' => 1, }, 'espanol-mx' => { 'lang' => 'espanol', 'name' => 'Spanish (Mexican)', 'short' => 'es-mx', - 'defengine' => 'espeak', + 'defengine' => 'espeak', ### Use gtts instead? 'engines' => { 'espeak' => '-ves -k 6', 'gtts' => '-l es -t mx', |