我正在寻找一个准确率 > 95% 且平均响应时间的语音识别库 < 400ms. This is needed for one of my native ANDROID app which has been running on propriety android tablets that don't have Google play services and hence I cannot use native Google speech APIs in first place.
如果您使用或尝试过任何无需 Google 语音识别 API 即可工作的语音识别库,请随时分享它或参考链接或您认为在这方面有帮助的任何内容。预先感谢。
我已经尝试过一些像 Viosk 这样的库,但没有满足我的准确性和延迟要求。
Android SDK 有一个内置的
SpeechRecognizer
类。此类在 Android 中提供实时语音识别。
请注意,应用程序必须具有
Manifest.permission.RECORD_AUDIO
权限才能使用此类。
这里是官方文档。