diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2024-11-21 07:42:27 -0500 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2024-11-21 07:43:09 -0500 |
commit | 505bbcaff555cecb4a64dbc665142b7553b4a3a4 (patch) | |
tree | 9494c95e982229a60e8b8ac0a33d0dc5449fca58 | |
parent | 587cf2fca06effa359b8389e8f9ba54456e5fff1 (diff) | |
download | rockbox-505bbcaff5.tar.gz rockbox-505bbcaff5.zip |
voice: Correct piper voice name for es_MX
Change-Id: I39c78e5067c049b8b269138d7d26273a141deae2
-rw-r--r-- | tools/builds.pm | 2 | ||||
-rwxr-xr-x | tools/voice.pl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/builds.pm b/tools/builds.pm index e63665880a..0517cd6e40 100644 --- a/tools/builds.pm +++ b/tools/builds.pm @@ -713,7 +713,7 @@ sub simbuilds { 'engines' => { 'espeak' => '-ves -k 6', 'gtts' => '-l es -t mx', - 'piper' => 'es_ES-claude-high.onnx', + 'piper' => 'es_MX-claude-high.onnx', }, 'enabled' => 1, }, diff --git a/tools/voice.pl b/tools/voice.pl index 867f3a84e3..49bb3e316c 100755 --- a/tools/voice.pl +++ b/tools/voice.pl @@ -150,7 +150,7 @@ my %piper_lang_map = ( # 'eesti' => '-vet', 'english-us' => 'en_US-lessac-high.onnx', 'espanol' => 'es_ES-sharvard-medium.onnx', -# 'espanol' => 'es_ES-claude-high.onnx', +# 'espanol' => 'es_MX-claude-high.onnx', 'francais' => 'fr_FR-siwis-medium.onnx', 'greek' => 'el_GR-rapunzelina-low.onnx', 'italiano' => 'it_IT-paola-medium.onnx', |