我的 Android 应用程序中的离线语音识别
Posted
技术标签:
【中文标题】我的 Android 应用程序中的离线语音识别【英文标题】:offline speech recognition in my android app 【发布时间】:2016-02-06 12:54:38 【问题描述】:我正在尝试在我的 android 应用程序中使用 google 离线语音识别,它只是将语音转换为文本,但它不起作用。我已经下载了离线语言。相同的应用程序在互联网连接时可以正常工作,但在离线模式下无法正常工作主要代码如下:
主要代码
package com.example.parth.texttospeech;
import android.content.ActivityNotFoundException;
import android.content.Intent;
import android.speech.RecognizerIntent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;
import android.widget.Toast;
import java.util.ArrayList;
import java.util.Locale;
public class MainActivity extends AppCompatActivity
TextView resultTEXT;
@Override
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
public void onButtonClick(View v)
if(v.getId()==R.id.bttexttospeech)
resultTEXT=(TextView)findViewById(R.id.tvresult);
prompSpeechInput();
public void prompSpeechInput()
Intent i=new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
i.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
i.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,Locale.getDefault());
i.putExtra(RecognizerIntent.EXTRA_PROMPT,"say something");
try
startActivityForResult(i,100);
catch(ActivityNotFoundException e)
Toast.makeText(getApplicationContext(),"sorry device doesnt support text to speech",Toast.LENGTH_LONG).show();
public void onActivityResult(int request_code, int result_code, Intent i)
super.onActivityResult(request_code,result_code,i);
switch(request_code)
case 100:if(result_code==RESULT_OK && i!=null)
ArrayList<String> result=i.getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);
resultTEXT.setText(result.get(0));
break;
【问题讨论】:
【参考方案1】:要在离线模式下工作,语言包必须在那里。下载并更新所有软件包。
此外,您可能想要添加 intent.putExtra(RecognizerIntent.EXTRA_MAX_RESULTS, 15);在你的代码中。
【讨论】:
以上是关于我的 Android 应用程序中的离线语音识别的主要内容,如果未能解决你的问题,请参考以下文章