工程配置:
科大讯飞下载对应的语音包sdk,http://open.voicecloud.cn/index.php/mycloud/app/integrateGuide?app_id=NTRiZTJhZGE=
java代码实现:
科大讯飞下载对应的语音包sdk,http://open.voicecloud.cn/index.php/mycloud/app/integrateGuide?app_id=NTRiZTJhZGE=
导入 SDK
1.将SDK中的libs文件夹合并到本地工程libs子目录下。
2.Eclipse用户右键工程根目录,选择Properties -> Java Build Path -> Libraries,然后点击Add External JARs... 选择指向jar的路径,点击OK,即导入成功。
配置AndroidManifest文件
打开AndroidManifest.xml文件,增加如下权限:
权限 | 用途 |
---|---|
INTERNET | 允许程序联网和发送统计数据的权限。 |
ACCESS_NETWORK_STATE | 允许应用检测网络连接状态。 |
READ_PHONE_STATE | 允许应用以只读的方式访问手机设备的信息,通过获取的信息来唯一标识用户。 |
ACCESS_WIFI_STATE | 允许应用获取设备的MAC地址,同样用来标识唯一用户。 |
ACCESS_ COARSE_LOCATION(可选) | 获取设备的上传数据时的位置信息,提高统计精准度。 |
meta-data | 用途 |
IFLYTEK_APPKEY | 用来唯一标识您的应用,请将示例代码中your_app_key替换为您申请创建应用的appid。 |
IFLYTEK_CHANNEL | 用来标注应用推广渠道,区分用户来源,请将示例代码中your_channel替换为您自定义的渠道名称。 格式:32个字符以内,支持中文、英文、数字 |
java代码实现:
package com.example.speec;
import com.iflytek.cloud.ErrorCode;
import com.iflytek.cloud.InitListener;
import com.iflytek.cloud.SpeechConstant;
import com.iflytek.cloud.SpeechError;
import com.iflytek.cloud.SpeechSynthesizer;
import com.iflytek.cloud.SpeechUtility;
import com.iflytek.cloud.SynthesizerListener;
import com.iflytek.sunflower.FlowerCollector;
import android.os.Bundle;
import android.app.Activity;
import android.util.Log;
import android.view.Menu;
import android.widget.Toast;
public class MainActivity extends Activity {
/**
* 合成回调监听。
*/
private SynthesizerListener mTtsListener = new SynthesizerListener() {
@Override
public void onSpeakBegin() {
}
@Override
public void onSpeakPaused() {
}
@Override
public void onSpeakResumed() {
}
@Override
public void onBufferProgress(int percent, int beginPos, int endPos,
String info) {
}
@Override
public void onSpeakProgress(int percent, int beginPos, int endPos) {
}
@Override
public void onCompleted(SpeechError error) {
if(error == null)
{
}
else if(error != null)
{
}
}
@Override
public void onEvent(int eventType, int arg1, int arg2, Bundle obj) {
}
};
// 语音合成对象
private SpeechSynthesizer mTts;
// 默认发音人
private String voicer="xiaoyan";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// 初始化合成对象
SpeechUtility.createUtility(this, SpeechConstant.APPID+"=54be2ada");
mTts = SpeechSynthesizer.createSynthesizer(this, null);
mTts.setParameter(SpeechConstant.VOICE_NAME,"xiaoyan");
mTts.setParameter(SpeechConstant.SPEED,"50");
mTts.setParameter(SpeechConstant.VOLUME,"80");
mTts.startSpeaking("科大讯飞", mTtsListener); //开始语音合成,现在合成的是“科大讯飞”
}
@Override
protected void onDestroy() {
super.onDestroy();
mTts.stopSpeaking();
}
@Override
protected void onResume() {
//移动数据统计分析
FlowerCollector.onResume(this);
FlowerCollector.onPageStart("TtsDemo");
super.onResume();
}
@Override
protected void onPause() {
//移动数据统计分析
FlowerCollector.onPageEnd("TtsDemo");
FlowerCollector.onPause(this);
super.onPause();
}
}