91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android中怎么實現語音合成與識別功能

發布時間:2021-08-10 14:27:08 來源:億速云 閱讀:103 作者:Leah 欄目:編程語言

今天就跟大家聊聊有關Android中怎么實現語音合成與識別功能,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

具體內容如下

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; }}

布局文件

<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格式的數據是參照訊飛的文檔中的

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(); }}

看完上述內容,你們對Android中怎么實現語音合成與識別功能有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

普格县| 巴楚县| 广南县| 崇信县| 和林格尔县| 枝江市| 仙游县| 阿巴嘎旗| 海晏县| 萨迦县| 寻乌县| 乾安县| 临高县| 滨海县| 陆良县| 北安市| 岳阳县| 连南| 三明市| 罗山县| 江口县| 彰武县| 天长市| 潼南县| 赤水市| 仙桃市| 莆田市| 连云港市| 辽中县| 黄骅市| 中西区| 临沧市| 颍上县| 保亭| 当涂县| 浮山县| 仪陇县| 嵊泗县| 司法| 兖州市| 曲沃县|