服务器之家:专注于VPS、云服务器配置技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Android - Android实现语音合成与识别功能

Android实现语音合成与识别功能

2022-10-24 14:05suancaiyucoding Android

这篇文章主要为大家详细介绍了Android实现语音合成与识别功能,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

Android语音合成与语音识别,供大家参考,具体内容如下

这里调用科大讯飞语音的API,语音云开放平台介绍

调用科大讯飞语音的API,需要加添库文件Msc.jar,添加libmsc.so文件,还需添加权限,具体步骤可参看SDK里的文档

参看开发的文档写了一个简单的语音合成和识别demo,图示如下

Android实现语音合成与识别功能

在EditText里输入文字,点击语音合成,可以实现文字转化为语音

Android实现语音合成与识别功能

点击语音合成,输入语音,识别的文字以提示的形式显示,并且显示在EditText中

Android实现语音合成与识别功能

主要代码如下,注意appid需要自己申请

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
package com.example.voice;
 
import java.util.ArrayList;
 
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
 
import com.iflytek.cloud.speech.*;
 
public class VoiceActivity extends Activity {
 private static final String APPID = "appid=52cddb99";
 private EditText et = null;
 private Button btn1 = null;
 private Button btn2 = null;
 String text = "";
 String temp="";
 
 protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.activity_voice);
 et = (EditText) findViewById(R.id.et);
 btn1 = (Button) findViewById(R.id.btn1);
 btn1.setOnClickListener(mylistener);
 btn2 = (Button) findViewById(R.id.btn2);
 btn2.setOnClickListener(mylistener);
 }
 
 private OnClickListener mylistener = new OnClickListener() {
 public void onClick(View v) {
 SpeechUser.getUser().login(VoiceActivity.this, null, null, APPID,
 loginListener);
 Button btn = (Button) v;
 switch (btn.getId()) {
 case R.id.btn1:
 SpeechSynthesizer mSpeechSynthesizer = SpeechSynthesizer
 .createSynthesizer(VoiceActivity.this);
 mSpeechSynthesizer.setParameter(SpeechConstant.VOICE_NAME,
 "xiaoyu");
 mSpeechSynthesizer.setParameter(SpeechConstant.SPEED, "50");
 mSpeechSynthesizer.startSpeaking(et.getText().toString(),
 mSynListener);
 break;
 case R.id.btn2:
 text = "";
 temp="";
 SpeechRecognizer recognizer = SpeechRecognizer
 .createRecognizer(VoiceActivity.this);
 recognizer.setParameter(SpeechConstant.DOMAIN, "iat");
 recognizer.setParameter(SpeechConstant.LANGUAGE, "zh_cn");
 recognizer.setParameter(SpeechConstant.ACCENT, "accent");
 recognizer.startListening(mRecoListener);
 break;
 }
 }
 };
 private SynthesizerListener mSynListener = new SynthesizerListener() {
 public void onBufferProgress(int arg0, int arg1, int arg2, String arg3) {
 }
 
 public void onCompleted(SpeechError arg0) {
 }
 
 public void onSpeakBegin() {
 }
 
 public void onSpeakPaused() {
 }
 
 public void onSpeakProgress(int arg0, int arg1, int arg2) {
 }
 
 public void onSpeakResumed() {
 }
 };
 private RecognizerListener mRecoListener = new RecognizerListener() {
 public void onBeginOfSpeech() {
 }
 
 public void onEndOfSpeech() {
 }
 
 public void onError(SpeechError error) {
 
 }
 
 public void onEvent(int arg0, int arg1, int arg2, String arg3) {
 }
 
 public void onVolumeChanged(int arg0) {
 }
 
 public void onResult(RecognizerResult results, boolean isLast) {
 //将解析后的字符串连在一起
 temp=results.getResultString();
 JsonParser json = new JsonParser();
 text+=json.parseIatResult(temp);
 if(isLast==true)
 {
 et.setText(text, null);
 Toast.makeText(VoiceActivity.this,text,Toast.LENGTH_LONG).show();
 }
 }
 };
 private SpeechListener loginListener = new SpeechListener() {
 public void onCompleted(SpeechError arg0) {
 }
 
 public void onData(byte[] arg0) {
 }
 
 public void onEvent(int arg0, Bundle arg1) {
 }
 };
 
 public boolean onCreateOptionsMenu(Menu menu) {
 // Inflate the menu; this adds items to the action bar if it is present.
 getMenuInflater().inflate(R.menu.voice, menu);
 return true;
 }
}

布局文件

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:paddingBottom="@dimen/activity_vertical_margin"
 android:paddingLeft="@dimen/activity_horizontal_margin"
 android:paddingRight="@dimen/activity_horizontal_margin"
 android:paddingTop="@dimen/activity_vertical_margin"
 tools:context=".VoiceActivity" >
 
 <TextView
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:gravity="center"
 android:text="VoiceApplication" />
 
 <EditText
 android:id="@+id/et"
 android:layout_width="fill_parent"
 android:layout_height="wrap_content"
 android:gravity="top"
 android:layout_weight="0.32" />
 
 <Button
 android:id="@+id/btn1"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:layout_weight="0.03"
 android:text="语音合成" />
 
 <Button
 android:id="@+id/btn2"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:layout_weight="0.03"
 android:text="语音识别" />
 
</TableLayout>

解析Json格式的数据是参照讯飞的文档中的

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package com.example.voice;
 
import org.json.JSONArray;
import org.json.JSONObject;
import org.json.JSONTokener;
 
import android.text.TextUtils;
 
//import com.iflytek.speech.ErrorCode;
//import com.iflytek.speech.SpeechError;
/**
 * 对云端返回的Json结果进行解析
 *
 * @author iFlytek
 * @since 20131211
 */
public class JsonParser {
 
 /**
 * 听写结果的Json格式解析
 *
 * @param json
 * @return
 */
 public static String parseIatResult(String json) {
 if (TextUtils.isEmpty(json))
 return "";
 
 StringBuffer ret = new StringBuffer();
 try {
 JSONTokener tokener = new JSONTokener(json);
 JSONObject joResult = new JSONObject(tokener);
 
 JSONArray words = joResult.getJSONArray("ws");
 for (int i = 0; i < words.length(); i++) {
 // 听写结果词,默认使用第一个结果
 JSONArray items = words.getJSONObject(i).getJSONArray("cw");
 JSONObject obj = items.getJSONObject(0);
 ret.append(obj.getString("w"));
 // 如果需要多候选结果,解析数组其他字段
 // for(int j = 0; j < items.length(); j++)
 // {
 // JSONObject obj = items.getJSONObject(j);
 // ret.append(obj.getString("w"));
 // }
 }
 } catch (Exception e) {
 e.printStackTrace();
 }
 return ret.toString();
 }
 
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/suancaiyucoding/article/details/19121799

延伸 · 阅读

精彩推荐