未找到语音到文本识别器

发布于 2024-10-21 17:49:07 字数 429 浏览 1 评论 0原文

我正在构建一个应用程序来记录用户的声音,然后将其转换为文本。从这篇文章Stackoverflow帖子我找到了源代码Android 开发人员,我已经运行代码,但按钮文本显示“RECOGNIZER NOT PRESENT”。我想我一定缺少一些权限或其他东西,因为之前我创建了一个文本到语音转换器并且它工作正常。

任何想法可能是什么问题?

I'm building an app that record the user's voice and then converts it to text. From this post Stackoverflow Post I've found the source code android developers, I've run the code but the button text reads "RECOGNIZER NOT PRESENT". I think I must be missing some permissions or something becouse earlier I created a Text to Speech converter and it was working fine.

Any ideas what might be the problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

稚气少女 2024-10-28 17:49:07

我不确定为什么识别器功能并非在所有设备上都可用。确保安装并更新最新的 Android 版 Google 语音搜索。我相信它安装了最新的识别器。请参阅 http://www.google.com/mobile/voice-actions/这可能会有所帮助。

正如Dante Jiang在将语音转换为文本中所说,根据本文Google 语音搜索 是您真正需要的。

Android SDK 使您可以轻松地
将语音输入直接集成到
您自己的应用程序 - 只需复制并
从此示例应用程序粘贴到
开始吧。安卓是一个开放的
平台,因此您的应用程序可以
可能利用任何演讲
设备上的识别服务
已注册接收
识别器意图。谷歌的声音
搜索应用程序,即
预装在许多 Android 设备上,
通过以下方式响应 RecognizerIntent
显示“立即发言”对话框并
将音频流传输至 Google
服务器——与
用户点击麦克风按钮
搜索小部件或启用语音的
键盘。 (您可以检查是否有语音
搜索已安装在“设置”中➝
应用程序➝管理应用程序。)

I am not sure why the recognizer functionality is not available on all devices. Make sure you install and update the latest Google Voice Search for Android. I believe it installs the latest recognizer. See http://www.google.com/mobile/voice-actions/ it may be helpful.

As Dante Jiang said in Converting speech to text, According to this article, Google Voice Search is what you actually need.

The Android SDK makes it easy to
integrate speech input directly into
your own application—just copy and
paste from this sample application to
get started. Android is an open
platform, so your application can
potentially make use of any speech
recognition service on the device
that's registered to receive a
RecognizerIntent. Google's Voice
Search application, which is
pre-installed on many Android devices,
responds to a RecognizerIntent by
displaying the "Speak now" dialog and
streaming audio to Google's
servers—the same servers used when a
user taps the microphone button on the
search widget or the voice-enabled
keyboard. (You can check if Voice
Search is installed in Settings ➝
Applications ➝ Manage applications.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文