Android:语音转文本和离线语音识别
我被困在我的离线 Android 应用程序之一中,我需要离线语音识别和语音转文本 API。
如果有人从事离线语音转文本和语音识别工作,请分享您的观点和意见。
I am stuck in one of my offline Android Application, where in I need Offline Speech Recognition and Speech to Text API.
Kindly share your views and input if anyone has worked on Offline Speech to Text and Speech Recognition.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以包含自己的引擎,例如 CMU Sphinx 引擎。这还具有无需数据连接即可工作的优点。
请参阅帖子了解如何在 Android 上安装它 - 但是您必须更改 Android.mk :颠倒
LOCAL_STATIC_LIBRARIES
的顺序,因此该行如下所示:否则 NDK 将无法构建包。
You could include your own engine, like the CMU Sphinx Engine. This has also the advantage of working without a data connection.
See this post on how to install it on Android - however you have to change the Android.mk : Reverse the order of
LOCAL_STATIC_LIBRARIES
so the line looks like this:Otherwise the NDK will fail to build the package.