Android使用百度語音識(shí)別的示例代碼
本文使用百度語音識(shí)別,完成語音識(shí)別的功能,使用百度語音識(shí)別,先要申請(qǐng)APP ID,這個(gè)直接到百度網(wǎng)站上有說明文檔,本文不再贅述。申請(qǐng)之后,下載SDK包,按照百度官網(wǎng)要求,合并libs和res兩個(gè)目錄到項(xiàng)目中,然后在build.gradle(module:app)中的Android{...}下添加
sourceSets{
main{
jniLibs.srcDirs=['libs']
}
}
這樣, 百度語音識(shí)別的so文件才能正常使用。
Manifest文件中添加權(quán)限
<uses-permission android:name="android.permission.RECORD_AUDIO" /> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" /> <uses-permission android:name="android.permission.READ_PHONE_STATE" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
然后還要在Manifest中添加
<!-- 請(qǐng)?zhí)顚憫?yīng)用實(shí)際的APP_ID --> <meta-data android:name="com.baidu.speech.APP_ID" android:value="APP ID"/> <!-- 請(qǐng)?zhí)顚憫?yīng)用實(shí)際的API_KEY --> <meta-data android:name="com.baidu.speech.API_KEY" android:value="API_KEY"/> <!-- 請(qǐng)?zhí)顚憫?yīng)用實(shí)際的SECRET_KEY --> <meta-data android:name="com.baidu.speech.SECRET_KEY" android:value="SECRET_KEY"/> <service android:name="com.baidu.speech.VoiceRecognitionService" android:exported="false" />
其中的APP ID,API_KEY和SECRET_KEY替換為你申請(qǐng)的內(nèi)容。
我們封裝了一個(gè)工具類,用來使用語音識(shí)別
package com.yjp.speechrecognizer;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.speech.RecognitionListener;
import android.speech.SpeechRecognizer;
import android.widget.Toast;
import com.baidu.speech.VoiceRecognitionService;
public class SpeechRecognizerTool implements RecognitionListener {
public interface ResultsCallback {
void onResults(String result);
}
private Context mContext;
private SpeechRecognizer mSpeechRecognizer;
private ResultsCallback mResultsCallback;
public SpeechRecognizerTool(Context context) {
mContext = context;
}
public synchronized void createTool() {
if (null == mSpeechRecognizer) {
// 創(chuàng)建識(shí)別器
mSpeechRecognizer = SpeechRecognizer.createSpeechRecognizer(mContext,
new ComponentName(mContext, VoiceRecognitionService.class));
// 注冊(cè)監(jiān)聽器
mSpeechRecognizer.setRecognitionListener(this);
}
}
public synchronized void destroyTool() {
mSpeechRecognizer.stopListening();
mSpeechRecognizer.destroy();
mSpeechRecognizer = null;
}
// 開始識(shí)別
public void startASR(ResultsCallback callback) {
mResultsCallback = callback;
Intent intent = new Intent();
bindParams(intent);
mSpeechRecognizer.startListening(intent);
}
//停止識(shí)別
public void stopASR() {
mSpeechRecognizer.stopListening();
}
private void bindParams(Intent intent) {
// 設(shè)置識(shí)別參數(shù)
}
@Override
public void onReadyForSpeech(Bundle params) {
// 準(zhǔn)備就緒
Toast.makeText(mContext, "請(qǐng)開始說話", Toast.LENGTH_SHORT).show();
}
@Override
public void onBeginningOfSpeech() {
// 開始說話處理
}
@Override
public void onRmsChanged(float rmsdB) {
// 音量變化處理
}
@Override
public void onBufferReceived(byte[] buffer) {
// 錄音數(shù)據(jù)傳出處理
}
@Override
public void onEndOfSpeech() {
// 說話結(jié)束處理
}
@Override
public void onError(int error) {
}
@Override
public void onResults(Bundle results) {
// 最終結(jié)果處理
if (mResultsCallback != null) {
String text = results.get(SpeechRecognizer.RESULTS_RECOGNITION)
.toString().replace("]", "").replace("[", "");
mResultsCallback.onResults(text);
}
}
@Override
public void onPartialResults(Bundle partialResults) {
// 臨時(shí)結(jié)果處理
}
@Override
public void onEvent(int eventType, Bundle params) {
}
}
MainActivity的界面如下
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
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"
android:orientation="vertical"
android:gravity="center"
tools:context="com.yjp.speechrecognizer.MainActivity">
<Button
android:id="@+id/startSpeechButton"
android:layout_width="60dp"
android:layout_height="40dp"
android:background="@drawable/bdspeech_btn_orangelight_normal"
android:text="按住說話"/>
<TextView
android:id="@+id/speechTextView"
android:layout_margin="10dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
MainActivity的類實(shí)現(xiàn)為:
package com.yjp.speechrecognizer;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.MotionEvent;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity implements SpeechRecognizerTool.ResultsCallback {
private Button mStartSpeechButton;
private TextView mTextView;
private SpeechRecognizerTool mSpeechRecognizerTool = new SpeechRecognizerTool(this);
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mTextView = (TextView) findViewById(R.id.speechTextView);
mStartSpeechButton = (Button) findViewById(R.id.startSpeechButton);
mStartSpeechButton.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
int action = event.getAction();
switch (action) {
case MotionEvent.ACTION_DOWN:
mSpeechRecognizerTool.startASR(MainActivity.this);
mStartSpeechButton.setBackgroundResource(
R.drawable.bdspeech_btn_orangelight_pressed);
break;
case MotionEvent.ACTION_UP:
mSpeechRecognizerTool.stopASR();
mStartSpeechButton.setBackgroundResource(
R.drawable.bdspeech_btn_orangelight_normal);
break;
default:
return false;
}
return true;
}
});
}
@Override
protected void onStart() {
super.onStart();
mSpeechRecognizerTool.createTool();
}
@Override
protected void onStop() {
super.onStop();
mSpeechRecognizerTool.destroyTool();
}
@Override
public void onResults(String result) {
final String finalResult = result;
MainActivity.this.runOnUiThread(new Runnable() {
@Override
public void run() {
mTextView.setText(finalResult);
}
});
}
}
可以運(yùn)行看一下效果,感覺識(shí)別率還是不錯(cuò)的。
以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
- Android基于訊飛語音SDK實(shí)現(xiàn)語音識(shí)別
- Android仿微信語音聊天功能
- android預(yù)置默認(rèn)的語音信箱號(hào)碼具體實(shí)現(xiàn)
- Android實(shí)現(xiàn)語音識(shí)別代碼
- Android 輕松實(shí)現(xiàn)語音識(shí)別詳解及實(shí)例代碼
- Android Studio應(yīng)用開發(fā)集成百度語音合成使用方法實(shí)例講解
- Android 基于百度語音的語音交互功能(推薦)
- Android仿微信語音聊天界面設(shè)計(jì)
- Android實(shí)現(xiàn)語音數(shù)據(jù)實(shí)時(shí)采集、播放
- android語音即時(shí)通訊之錄音、播放功能實(shí)現(xiàn)代碼
相關(guān)文章
Android Vibrator調(diào)節(jié)震動(dòng)代碼實(shí)例
這篇文章主要介紹了Android Vibrator調(diào)節(jié)震動(dòng)代碼實(shí)例,本文直接給出實(shí)現(xiàn)代碼,代碼中包含詳細(xì)注釋,需要的朋友可以參考下2015-05-05
基于Viewpager2實(shí)現(xiàn)登錄注冊(cè)引導(dǎo)頁面
這篇文章主要為大家詳細(xì)介紹了基于Viewpager2實(shí)現(xiàn)登錄注冊(cè)引導(dǎo)頁面,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2022-09-09
Kotlin 封裝萬能SharedPreferences存取任何類型詳解
這篇文章主要介紹了Kotlin 封裝萬能SharedPreferences存取任何類型詳解的相關(guān)資料,需要的朋友可以參考下2017-05-05
TextInputLayout輸入框控件的懸浮標(biāo)簽
這篇文章主要為大家詳細(xì)介紹了TextInputLayout輸入框控件的懸浮標(biāo)簽,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2017-12-12

