Android中是否有内置的文本到语音库?如果不是,您是否知道要使用的外部库?
答案 0 :(得分:2)
看看这个Android TTS API。
以下是使用它的示例:
t1=new TextToSpeech(getApplicationContext(), new TextToSpeech.OnInitListener() {
@Override
public void onInit(int status) {
if(status != TextToSpeech.ERROR) {
t1.setLanguage(Locale.UK);
}
}
});
t1.speak("This will be spoken.", TextToSpeech.QUEUE_FLUSH, null);