2018 Android 文字轉語音(中文) TextToSpeech+科大訊飛語音引擎3.0
阿新 • • 發佈:2019-02-10
最近專案中需要用到文字轉語音。
本來是想使用朗讀女生成的聲音檔案放到專案資源中進行播放。
但是產品要求改成動態的。於是就用了Google為我們封裝好的類TTS,即[TextToSpeech]:大家可以看下詳細文件。
程式碼其實不多,但是寫完之後測試就有問題,沒聲音,,,,看了之後才知道谷歌這個官方api不支援中文。。很Tmd.
給大家科普下:
文字轉語音的引擎:
- com.svox.pico 系統自帶不支援中文語音
- com.svox.classic 搜svox搜到的,和上面類似不支援中文
- com.google.android.tts 谷歌文字轉語音引擎,不支援5.0以下系統,大小18.85M
- com.iflytek.speechcloud 科大訊飛語音引擎3.0,支援4.0以上系統,大小28.6M
- com.baidu.duersdk.opensdk 度祕語音引擎3.0 不支援5.0以下系統,大小12.53M
- com.iflytek.tts 科大訊飛語音合成,較老,不支援7.0以上系統,大小9.44M
接下來就是程式碼:
package com.sgq.texttospeech;
import android.speech.tts.TextToSpeech;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
import java.util.Locale;
public class MainActivity extends AppCompatActivity implements View.OnClickListener, TextToSpeech.OnInitListener {
private Button speechBtn; // 按鈕控制開始朗讀
private EditText speechTxt; // 需要朗讀的內容
private TextToSpeech textToSpeech; // TTS物件
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
speechBtn = (Button) findViewById(R.id.btn_read);
speechBtn.setOnClickListener(this);
speechTxt = (EditText) findViewById(R.id.et_Text);
textToSpeech = new TextToSpeech(this, this); // 引數Context,TextToSpeech.OnInitListener
}
@Override
protected void onStop() {
super.onStop();
textToSpeech.stop(); // 不管是否正在朗讀TTS都被打斷
textToSpeech.shutdown(); // 關閉,釋放資源
}
/**
* 用來初始化TextToSpeech引擎
* status:SUCCESS或ERROR這2個值
* setLanguage設定語言,幫助文件裡面寫了有22種
* TextToSpeech.LANG_MISSING_DATA:表示語言的資料丟失。
* TextToSpeech.LANG_NOT_SUPPORTED:不支援
*/
@Override
public void onInit(int status) {
if (status == TextToSpeech.SUCCESS) {
int result = textToSpeech.setLanguage(Locale.CHINA);
if (result == TextToSpeech.LANG_MISSING_DATA
|| result == TextToSpeech.LANG_NOT_SUPPORTED) {
Toast.makeText(this, "資料丟失或不支援", Toast.LENGTH_SHORT).show();
}
}
}
@Override
public void onClick(View v) {
if (textToSpeech != null && !textToSpeech.isSpeaking()) {
textToSpeech.setPitch(-1f);// 設定音調,值越大聲音越尖(女生),值越小則變成男聲,1.0是常規
textToSpeech.speak(speechTxt.getText().toString(),
TextToSpeech.QUEUE_FLUSH, null);
}
}
}
加上許可權:
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
佈局檔案:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<EditText
android:id="@+id/et_Text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="請輸入要朗誦的文字" />
<Button
android:id="@+id/btn_read"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="讀" />
</LinearLayout>
</android.support.constraint.ConstraintLayout>
ok,接下來就可以用到專案中!
望君程式碼永無bug!!!!!!!!!!!!!!!!!!!