We don’t allow questions seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
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
您可以使用 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