TTS 是 Text To Speech 的縮寫,即「從文本到語音」,是人機對話的一部分,讓機器可以說話。bash
TTS 技術對文本文件進行實時轉換,轉換時間之短能夠秒計算。ide
TTS 不只能幫助有視覺障礙的人閱讀計算機上的信息,更能增長文本文檔的可讀性。如今的 TTS 應用包括語音驅動的郵件以及聲音敏感系統,並常與聲音識別程序一塊兒使用。this
從上面 Android 開發者官網的介紹能夠看出 TextToSpeech 必須被實例化以後才能使用。spa
實現 TextToSpeech.OnInitListener 方法來獲取實例化結果的監聽。當你已經使用完 TextToSpeech 實例以後, 應該調用 shutdown() 方法來釋放 TextToSpeech 所使用的本地資源。code
構造方法cdn
//使用默認的引擎
TextToSpeech(Context context, TextToSpeech.OnInitListener listener)
//使用指定的引擎
TextToSpeech(Context context, TextToSpeech.OnInitListener listener, String engine)
複製代碼
主要方法blog
/**
* text 須要轉成語音的文字
* queueMode 隊列方式:
* QUEUE_ADD:播放完以前的語音任務後才播報本次內容
* QUEUE_FLUSH:丟棄以前的播報任務,當即播報本次內容
* params 設置TTS參數,能夠是null。
* KEY_PARAM_STREAM:音頻通道,能夠是:STREAM_MUSIC、STREAM_NOTIFICATION、STREAM_RING等
* KEY_PARAM_VOLUME:音量大小,0-1f
* utteranceId:當前朗讀文本的id
*/
textToSpeech.speak(content, TextToSpeech.QUEUE_FLUSH, null,i+"");
// 無論是否正在朗讀TTS都被打斷
textToSpeech.stop();
// 關閉,釋放資源
textToSpeech.shutdown();
// 設置音調,值越大聲音越尖(女生),值越小則變成男聲,1.0是常規
textToSpeech.setPitch(0.5f);
// 設定語速,默認1.0正常語速
textToSpeech.setSpeechRate(1.5f);
複製代碼
一、建立 TextToSpeech 類隊列
//使用默認引擎,傳入 Context 和 OnInitListener
TextToSpeech toSpeech = new TextToSpeech(this, this);
複製代碼
二、重寫 onInit() 方法資源
@Override
public void onInit(int status) {
if (status == TextToSpeech.SUCCESS) {
int result = toSpeech.setLanguage(Locale.CHINA);
if (result == TextToSpeech.LANG_MISSING_DATA
|| result == TextToSpeech.LANG_NOT_SUPPORTED) {
Toast.makeText(this, "數據丟失或不支持", Toast.LENGTH_SHORT).show();
}
if (toSpeech != null) {
toSpeech.setPitch(1.0f);// 設置音調,值越大聲音越尖(女生),值越小則變成男聲,1.0是常規
toSpeech.speak(list_task_little.get(currentPosition).getTask_content(),
TextToSpeech.QUEUE_FLUSH, null);
}
}
}
複製代碼
調用方法 int result = toSpeech.setLanguage(Locale.CHINA); 設定語言爲中文開發
在 onInit() 方法中判斷初始化是否成功,初始化成功使用 toSpeech.setPitch(1.0f) 進行設置音調,值越大,音調越高。
使用 textToSpeech.setSpeechRate(1.5f) 設定語速,默認1.0正常語速。
三、釋放資源
@Override
protected void onStop() {
super.onStop();
toSpeech.stop(); // 無論是否正在朗讀TTS都被打斷
toSpeech.shutdown(); // 關閉,釋放資源
}
複製代碼
當頁面須要退出或者不在使用 TTS 的時候,進行資源釋放。