如何在Android中使用谷歌语音API

发布于 2024-12-29 16:23:09 字数 421 浏览 2 评论 0原文

我必须开发一个 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 技术交流群。

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

发布评论

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

评论(1

Smile简单爱 2025-01-05 16:23:09

您实际上无法录制 wav 文件并使用它。此时唯一的方法是使用 android Intent 从麦克风获取语音:

Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE, "en-EN");
startActivityForResult(intent, CODE);

然后您可以在 onActvityResult 函数中接收结果:

protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        List<String> matches = data.getStringArrayListExtra(
                RecognizerIntent.EXTRA_RESULTS);

}

这是基本思想。

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:

Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE, "en-EN");
startActivityForResult(intent, CODE);

And then you can recievie the result in onActvityResult function:

protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        List<String> matches = data.getStringArrayListExtra(
                RecognizerIntent.EXTRA_RESULTS);

}

That is the basic idea.

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