gpt4 book ai didi

android - 文字转语音(TTS)-Android-葡萄牙语

转载 作者:行者123 更新时间:2023-12-03 00:39:46 39 4
gpt4 key购买 nike

我正在尝试使用Android应用程序重现一些文本,这将帮助视障人士,尤其是使用TTS的人,但就我而言,我需要葡萄牙语-巴西语,并且TTS类没有葡萄牙语作为区域设置。有谁知道如何实现葡萄牙语巴西读者?

我使用的是Android Studio,而MinSDK是15。

...

tts = new TextToSpeech (this, this);

tts.setLanguage(Locale.[X]);

...

tts.speak("Muito obrigado a todos!", TextToSpeech.QUEUE_FLUSH, null);

...

最佳答案

您是如何制作onInitListener()的?当您调用tts = new TextToSpeech (this, this);时,onInitListener()会将TextToSpeech服务连接到您的tts实例。因此,如果您尝试设置语言或说出声音,请检查以下值:

tts = new TextToSpeech (this, this);

@Override
public void onInit(int status) {
if (status == TextToSpeech.SUCCESS) {
int res = tts.setLanguage(Locale.[X]);
if (res >= TextToSpeech.LANG_AVAILABLE) {
// Then, you can speak with your locale.
// Call speak() in here or after this method.
tts.speak("Muito obrigado a todos!", TextToSpeech.QUEUE_FLUSH, null);
}
}
}

关于android - 文字转语音(TTS)-Android-葡萄牙语,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36045731/

39 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com