テキストを音声に変換するために TTS エンジンを使用しており、TTS 音声を一時停止して音声を再開したい..synthesizetofile() を使用して TTS エンジン音声を保存するために SD カードを使用しようとしましたが、正常に動作します..しかし、私の要件は一時停止することです. SDカードに保存せずにTTSエンジンの音声を再開する...解決策を教えてください
質問する
613 次
1 に答える
0
private void Teks_Ke_Suara_Kontak() {
String text = textkontakAuto.getText().toString();
HashMap<String, String> myHash = new HashMap<String, String>();
myHash.put(TextToSpeech.Engine.KEY_PARAM_UTTERANCE_ID, "done");
String[] splitspeech = text.split(" : ");
for (int i = 0; i < splitspeech.length; i++)
{
if (i == 0)
{ // Use for the first splited text to flush on audio stream
SuaraKeTeks.speak(splitspeech[i].toString().trim(),TextToSpeech.QUEUE_FLUSH, myHash);
}
else
{ // add the new test on previous then play the TTS
SuaraKeTeks.speak(splitspeech[i].toString().trim(), TextToSpeech.QUEUE_ADD,myHash);
}
SuaraKeTeks.playSilence(750, TextToSpeech.QUEUE_ADD, null);
}
}
于 2014-07-27T02:53:02.823 に答える