- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在 google glass 中创建一个功能,让我无需说出热词“ok glass”即可在卡片之间导航。
我尝试创建一个 SpeechRecognizer,它会不断地听取是否有人在说什么,如果提到了正确的“命令”,应用程序就会相应地采取行动。
但是 onError 方法告诉我
Error occured: RecognitionService busy.
它会抛出一个错误
Activity com.example.sw_stage.topfinder.MainActivity has leaked ServiceConnection android.speech.SpeechRecognizer$Connection@41d79530 that was originally bound here
android.app.ServiceConnectionLeaked: Activity com.example.sw_stage.topfinder.MainActivity has leaked ServiceConnection android.speech.SpeechRecognizer$Connection@41d79530 that was originally bound here
at android.app.LoadedApk$ServiceDispatcher.<init>(LoadedApk.java:970)
at android.app.LoadedApk.getServiceDispatcher(LoadedApk.java:864)
at android.app.ContextImpl.bindServiceCommon(ContextImpl.java:1575)
at android.app.ContextImpl.bindService(ContextImpl.java:1558)
at android.content.ContextWrapper.bindService(ContextWrapper.java:517)
at android.speech.SpeechRecognizer.startListening(SpeechRecognizer.java:287)
at com.example.sw_stage.topfinder.SpeechDetector.<init>(SpeechDetector.java:35)
at com.example.sw_stage.topfinder.MainActivity.onCreate(MainActivity.java:58)
at android.app.Activity.performCreate(Activity.java:5235)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1089)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2188)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2273)
at android.app.ActivityThread.access$800(ActivityThread.java:138)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1236)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:149)
at android.app.ActivityThread.main(ActivityThread.java:5045)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:515)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:786)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:602)
at dalvik.system.NativeStart.main(Native Method)
我目前正在使用这个项目来测试我希望在最终应用程序中拥有的一些功能。目前我正在使用
这是我为 SpeechRecognizer 编写的类
package com.example.sw_stage.topfinder;
import android.content.Context;
import android.content.Intent;
import android.media.AudioManager;
import android.os.Bundle;
import android.speech.RecognitionListener;
import android.speech.RecognizerIntent;
import android.speech.SpeechRecognizer;
import android.util.Log;
import java.util.ArrayList;
public class SpeechDetector {
AudioManager mAudioManager;
SpeechRecognizer mSpeechRecognizer;
Intent intent;
issueKey mIssueKey = new issueKey();
public SpeechDetector(Context context)
{
Log.i("speechdetector", "calling speech detector");
mAudioManager = (AudioManager) context.getSystemService(Context.AUDIO_SERVICE);
mSpeechRecognizer = SpeechRecognizer.createSpeechRecognizer(context);
mSpeechRecognizer.setRecognitionListener(new listener(context));
intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
Log.i("package name", context.getPackageName());
intent.putExtra(RecognizerIntent.EXTRA_CALLING_PACKAGE, context.getPackageName());
mSpeechRecognizer.startListening(intent);
Log.i("111111","11111111"+"in");
}
class listener implements RecognitionListener
{
Context context1;
public listener(Context context)
{
context1 = context;
}
@Override
public void onReadyForSpeech(Bundle bundle) {
}
@Override
public void onBeginningOfSpeech() {
}
@Override
public void onRmsChanged(float v) {
}
@Override
public void onBufferReceived(byte[] bytes) {
}
@Override
public void onEndOfSpeech() {
mSpeechRecognizer.startListening(intent);
}
@Override
public void onError(int i) {
//3 Audio recording error.
//5 Other client side errors.
//6 - No speech input
//7 -No recognition result matched.
//8 RecognitionService busy.
//9 - vInsufficient permissions
if(i == 1 || i == 2 || i == 3 || i == 4 || i == 5 || i == 6 || i == 7 || i == 8 || i == 9)
{
Log.wtf("Error occured", "Error " + i);
mSpeechRecognizer.startListening(intent);
}
}
@Override
public void onResults(Bundle bundle) {
ArrayList data = bundle.getStringArrayList(SpeechRecognizer.RESULTS_RECOGNITION);
String result = "enter";
String reslt = "";
for (int i = 0; i < data.size(); i++)
{
reslt = reslt + " " + data.get(i);
}
switch(result)
{
case "next": mIssueKey.issueKey(22);
break;
case "previous": mIssueKey.issueKey(21);
break;
case "enter": mIssueKey.issueKey(23);
break;
case "leave": mIssueKey.issueKey(4);
}
}
@Override
public void onPartialResults(Bundle bundle) {
}
@Override
public void onEvent(int i, Bundle bundle) {
}
}
我在我的 MainActivity onCreate() 方法中调用这个类。
private SpeechDetector mSpeechDetector;
@Override
protected void onCreate(Bundle bundle) {
super.onCreate(bundle);
mIssueKey = new issueKey();
mSpeechDetector = new SpeechDetector(getApplicationContext());
我变了
new SpeechDetector(MainActivity.this);
到
new SpeechDetector(getApplicationContext());
而且我不再得到泄漏的错误
然而
显然,泄露的错误与 RecognitionService 忙碌无关。所以我仍然坚持我的 speechrecognition 不起作用的事实,因为它抛出 RecognitionService busy
错误
编辑我刚刚注意到它写了一个额外的日志
03-03 13:11:13.252 20018-20018/? A/Error occured﹕ RecognitionService busy
03-03 13:11:13.260 825-825/? I/RecognitionService﹕ concurrent startListening received - ignoring this call
最佳答案
看起来 RecognitionService
在您调用 startListening()
时已经在使用中。我相信这是因为您已经在构造函数中调用了 startListening()
,然后在 onEndOfSpeech()
中再次调用了它。
确保在再次调用 startListening()
之前进行必要的 cancel()
调用。
关于android - Activity 已泄漏 ServiceConnection android.speech.SpeechRecognizer$Connection,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28828928/
SpeechRecognizer 正常工作了很长时间,突然它不工作了,现在没有检测到任何东西.. 示例代码是这样的。当它在线时它可以正常工作但离线时不能,我错过了吗什么地方都有??? Spee
我正在尝试在没有 Intent Dialog 的情况下在 Android 上使用 SpeechRecognizer。它在大多数设备上都可以正常工作,但有些设备会返回音频录制错误(错误代码 3)并且没有
我正在编写WinRT应用,并在VS 2015,x86调试中对其进行测试。我正进入(状态 我的应用程序未创建不需要的音频输出。这是我的代码: using Windows.Media.SpeechReco
我在 Activity 中使用 Native SpeechRecognizer 服务,它“有效”,但我遇到了一些严重的问题。 返回的“语音转文本”坦率地说非常令人震惊,而且非常非常差,在应用程序中肯定
简介 我需要在我的代码中实现语音识别。我按照这里的其他帖子和一些教程来获取它,但它不适合我。 方法 这是在 onCreate 中初始化它的代码: Log.d("SPEECH", "speech rec
我遇到一个问题,SpeechRecognizer 将正确收听,当我下次收听它时转到 SpeechRecognizer.ERROR_NO_MATCH,识别器立即无法 SpeechRecognizer.E
我知道 SpeechRecognizer 在 android 中是如何工作的。我有一个要求,我需要在一段时间后调用 SpeechRecognizer.stopListening() 方法。但在那之后,
我正在学习有关 iOS 10 语音识别 API 的一些教程 (https://code.tutsplus.com/tutorials/using-the-speech-recognition-api-
我正在使用 SppechRecognizer用于语音识别器应用程序。它工作正常。我的要求是我想在 1 秒或 2 秒后停止收听语音。如何实现? 最佳答案 1 或 2 秒似乎不是很多时间,但如果你想设置一
有没有办法在通话时运行 SpeechRecognizer?我是这样做的: BroadcastReceiver 处理电话状态的变化(例如摘机)。 SpeechRecognizer 在当前(主)线程中启动
我正在尝试在我的 Android 应用程序中使用 SpeechRecognizer 库,到目前为止,它的工作给我留下了很多问题。首先,当我停止说话时它不会停止。如果我试图停止语音识别自己,下次它会给我
如何找到默认系统语音识别器的 ComponentName,即 createSpeechRecognizer(Context context) 时返回的那个叫做? (其实我只需要知道它支持哪些输入语言,
我正在尝试在 Android 4.4 中创建连续语音识别,简单地在 TextView 中显示口语,就像命令一样。我遵循了多个教程,例如 https://github.com/fcrisciani/an
我在 Android 中使用 SpeechRecognizer 和 RecognizerIntent 来实现语音识别。我的目标是在我的语音识别器在屏幕上显示结果后重新开始收听语音。为此,我使用了以下代
我正在使用名为 SpeechRecognizer 的 Android 语音 API 尝试将语音翻译成文本,但由于某种原因,只要我点击按钮 - 我就会看到消息 “目前无法访问谷歌” ,不等我讲话, wi
我使用 SpeechRecognizer 来实现“语音到文本”功能,她的工作结果是文本数据: Intent intent = new Intent(RecognizerIntent.ACTION_RE
我有一个 maind UI 类,其中有一个按钮实例化一个类,该类正在实现 SpeechRecognizer 库以将语音从文本转换为文本。 btnSpeak = (ImageButton) findVi
我有一个相当奇怪的问题。我有一个 Android 应用程序,我使用 SpeechRecognizer 类为其添加语音识别。我创建了实现 RecognitionListener 的类,它只打印每个事件的
我正在开发 UWP 并想使用 SpeechRecognizer。它应该只对“Next”和“Back”这两个词使用react。但通常,它会将“NExt”识别为“Back”。我的代码如下。如何解决? va
请看下面的代码。 onBeginningOfSpeech() 被调用(甚至在我开始说话之前,顺便说一句),但随后 - 没有。我错过了什么? 我承认代码大部分是由不同的例子组成的,我没有完全理解。但我希
我是一名优秀的程序员,十分优秀!