语音合成时怎么选择播报的声音?我用sdk中
String ttsTextModelFilePath =
getApplicationContext().getApplicationInfo().dataDir + "/lib/libbd_etts_text.dat.so";
String ttsSpeechModelFilePath =
getApplicationContext().getApplicationInfo().dataDir + "/lib/libbd_etts_speech_female.dat.so";
speechSynthesizer.setParam(SpeechSynthesizer.PARAM_TTS_TEXT_MODEL_FILE, ttsTextModelFilePath);
speechSynthesizer.setParam(SpeechSynthesizer.PARAM_TTS_SPEECH_MODEL_FILE, ttsSpeechModelFilePath);
不起作用,有谁能替我解答一下?
收藏
点赞
0
个赞
请登录后评论
TOP
切换版块
看看
通过speaker参数设置在线的,或者通过dat文件设置离线的
哦,明白了