mirror of
https://github.com/ankitects/anki.git
synced 2025-12-06 11:27:11 -05:00
feat(tts): fallback to Apple Samantha voice for TTS on macOS (#4420)
* Fallback to Apple Samantha voice for en_US TTS on macOS * Use prefix match for Apple Samantha voice fallback
This commit is contained in:
parent
c2fddcaf42
commit
9facea0a66
1 changed files with 9 additions and 2 deletions
|
|
@ -94,8 +94,15 @@ class TTSPlayer:
|
|||
|
||||
rank -= 1
|
||||
|
||||
# if no preferred voices match, we fall back on language
|
||||
# with a rank of -100
|
||||
# if no requested voices match, use a preferred fallback voice
|
||||
# (for example, Apple Samantha) with rank of -50
|
||||
for avail in avail_voices:
|
||||
if avail.lang == tag.lang:
|
||||
if avail.lang == "en_US" and avail.name.startswith("Apple_Samantha"):
|
||||
return TTSVoiceMatch(voice=avail, rank=-50)
|
||||
|
||||
# if no requested or preferred voices match, we fall back on
|
||||
# the first available voice for the language, with a rank of -100
|
||||
for avail in avail_voices:
|
||||
if avail.lang == tag.lang:
|
||||
return TTSVoiceMatch(voice=avail, rank=-100)
|
||||
|
|
|
|||
Loading…
Reference in a new issue