作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
从您通过 startActivityForResult() 调用它到它的对话框显示准备好接受您的演讲,Google 语音搜索会出现明显的延迟。
这要求用户在说话之前始终看着屏幕,等待对话框显示。
所以我正在考虑通过实现 RecognitionListener 并在 onReadyForSpeech() 中发出 DTMF 音调来生成声音信号而不是对话框,如下面的代码 fragment 所示:
@Override
public void onReadyForSpeech(Bundle params) {
Log.d(LCTAG, "Called when the endpointer is ready for the user to start speaking.");
mToneGenerator.startTone(ToneGenerator.TONE_DTMF_1);
try {
Thread.sleep(50);
} catch (InterruptedException e) {
Log.e(LCTAG, "InterruptedException while in Thread.sleep(50).");
e.printStackTrace();
} // SystemClock.sleep(50);
mToneGenerator.stopTone();
}
音调听起来很美妙,但是......它也被麦克风“听到”,到达语音识别服务并且总是产生识别错误ERROR_NO_MATCH。
有没有办法解决这个问题?
最佳答案
这是一个随机的想法,它很可能行不通。
您可以尝试在播放音调时禁用麦克风(可能通过 AudioManager.setMicrophoneMute
)吗?
关于android - RecognitionListener.onReadyForSpeech() 中的 DTMF 音被误认为是语音,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5734555/
我是一名优秀的程序员,十分优秀!