如何在Android中使用谷歌语音API
我必须开发一个 Android 应用程序,用户在其中说话,并将 wav 文件发送到服务器,其中 googlespeech api 将返回一些文本,我将在 Android 活动屏幕上显示它。
注意:不要将自己与 android Text To Speech 库混淆,我必须发送 wav 文件
到客户端的服务器。
问题:我不知道如何使用这个 API。我可以录制客户端的声音并将其保存在 wav 文件中,但不知道如何继续。
参考链接:http://mikepultz.com/2011/03 /accessing-google-speech-api-chrome-11/
I have to develop an android application in which user speaks something and the wav file os send to the server where the googlespeech api shall return some text and i will display it on the android activity screen.
Note : Dont confuse urself with the android Text To Speech library i have to send the wav file
to the client's server.
Problem : I have no idea of howsoever to use this API. I can record the voice from the client and save it in a wav file but don't know how to proceed.
Refer Link : http://mikepultz.com/2011/03/accessing-google-speech-api-chrome-11/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您实际上无法录制 wav 文件并使用它。此时唯一的方法是使用 android Intent 从麦克风获取语音:
然后您可以在 onActvityResult 函数中接收结果:
这是基本思想。
You actually can't record a wav file and use it. At this moment the only way to do it is to get voice from the microphone using android intent:
And then you can recievie the result in onActvityResult function:
That is the basic idea.