gpt4 book ai didi

java - 安卓文字转语音男声

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:58:51 25 4
gpt4 key购买 nike

我有一个可以工作的文字转语音,但我想知道当应用程序调用它播放时它会发出男声而不是女声吗?

最佳答案

现在可以使用男声/女声,并可以从 App UI 动态更改它。像这样定义 TTS(在构造函数中添加 google tts 引擎):

tts = new TextToSpeech(context, this, "com.google.android.tts");

contex = activity/app

this= TextToSpeech.OnInitListener

tts.getVoices() 列表中,通过名称选择您想要的声音,如下所示:

for (Voice tmpVoice : tts.getVoices()) {
if (tmpVoice.getName().equals(_voiceName)) {
return tmpVoice;
break;
}
}

注意:您需要通过从 tts.getVoices() 获取硬编码的 voice_name 来设置 _voiceName。例如:对于英国男性,它将是:“en-us-x-sfg#male_1-local”

关于java - 安卓文字转语音男声,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9815245/

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