2015년 10월 3일 토요일

안드로이드 TTS (Text To Speech) 사용


  1. TextToSpeech tts;
  2.  
  3. tts = new TextToSpeech(getApplicationContext(), new TextToSpeech.OnInitListener() {@Override
  4.     public void onInit(int status) {
  5.         if (status != TextToSpeech.ERROR) {
  6.             tts.setLanguage(Locale.KOREAN);
  7.         }
  8.     }
  9. });
  10.  
  11. String read = "hey";
  12. tts.speak(read, TextToSpeech.QUEUE_FLUSH, null);

댓글 없음:

댓글 쓰기