适用于英语以外语言的 Google 语音转文本 API

发布于 2024-10-17 01:54:04 字数 1539 浏览 5 评论 0原文

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

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

发布评论

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

评论(2

计㈡愣 2024-10-24 01:54:04

http://developer.android.com/resources/articles/speech-input.html 说:

Google 的服务器目前支持英语、普通话和日语。网络搜索模型支持所有三种语言,而自由格式主要针对英语进行了优化。 受益。

随着我们努力支持更多语言的更多模型,并提高我们产品中使用的语音识别技术的准确性,将语音功能直接集成到应用程序中的 Android 开发人员也能从中 如果您使用意图,请设置 EXTRA_LANGUAGE 的值。请参阅http://developer.android.com/reference/android/speech/ RecognizerIntent.html#EXTRA_LANGUAGE

http://developer.android.com/resources/articles/speech-input.html says:

Google's servers currently support English, Mandarin Chinese, and Japanese. The web search model is available in all three languages, while free-form has primarily been optimized for English. As we work hard to support more models in more languages, and to improve the accuracy of the speech recognition technology we use in our products, Android developers who integrate speech capabilities directly into their applications can reap the benefits as well.

When you use the intent, set the value for EXTRA_LANGUAGE. See http://developer.android.com/reference/android/speech/RecognizerIntent.html#EXTRA_LANGUAGE

眼角的笑意。 2024-10-24 01:54:04

您可以使用 Google 的 Web Speech API,在本地计算机上录制声音并将其发送到外部服务器,您可以控制一些变体,例如何时停止或开始识别以及其他一些事情。您甚至可以为不同的语言设置一个变量。

var langs = [['en-US', '美国'],['es-AR', '阿根廷']];

有关更多信息,请访问以下链接:

http://updates.html5rocks.com/2013/01/Voice-Driven-Web-Apps-Introduction-to-the-Web-Speech-API

You can use Google's Web Speech API, you record the sound on your local machine and it is send to an external server, you can control some variants like when to stop or start the recognition and some other things. There is even a variable that you can set for different languages.

var langs = [['en-US', 'United States'],['es-AR', 'Argentina']];

For more information here's a link:

http://updates.html5rocks.com/2013/01/Voice-Driven-Web-Apps-Introduction-to-the-Web-Speech-API

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