谷歌语音Api v1不工作?

2024-04-29 05:25:35 发布

您现在位置:Python中文网/ 问答频道 /正文

我用Google speech Api v1开发了一个应用程序

https://www.google.com/speech-api/v1/recognize?xjerr=1&client=chromium&lang="+language_code;

这个链接被用来得到回应。它工作得很好,但就从今天开始它就不工作了。我没有得到任何回应,从这个环节。有人知道吗?有没有其他的链接?请帮忙

  protected String doInBackground(Void... params) {
    // TODO Auto-generated method stub

    String urlString = "https://www.google.com/speech-api/v2/recognize?xjerr=1&client=chromium&lang="
            + language_code;
//      String urlString = "https://www.google.com/speech-api/v2/recognize?    output=json&lang="+language_code+"s&key=AIzaSyCnl6MRydhw_5fLXIdASxkLJzcJh5iX0M4";

//      Log.e("SpeechRecognizer  url : ", urlString);
//       String urlString =
//       "https://www.google.com/speech-api/v1/recognize?xjerr=1&client=speech2text&lang="
//       + language_code;
    URL url;
    try {
        Log.e("", "started speech to text");

        FLAC_FileEncoder fileEncoder = new FLAC_FileEncoder();

        File inputfile = new File(Environment.getExternalStorageDirectory()
                .getPath() + "/SpeechLibrary/speech.wav");
        File outputfile = new File(Environment
                .getExternalStorageDirectory().getPath()
                + "/SpeechLibrary/speech.flac");

        fileEncoder.encode(inputfile, outputfile);

        url = new URL(urlString);
        HttpURLConnection con = (HttpURLConnection) url.openConnection();
        con.setDefaultUseCaches(true);
        con.setConnectTimeout(20000);

        con.setReadTimeout(60000);
        con.setDoInput(true);
        con.setDoOutput(true);
        con.setInstanceFollowRedirects(true);
        con.setRequestMethod("POST");
        // con.setRequestProperty("User-Agent",
        // "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12");
        con.setRequestProperty("Content-Type", "audio/x-flac;rate=16000");
        File file = new File(Environment.getExternalStorageDirectory()
                .getPath() + "/SpeechLibrary/speech.flac");
        byte[] buffer = new byte[(int) file.length()];
        FileInputStream fis = new FileInputStream(file);
        fis.read(buffer);
        fis.close();
        OutputStream os = con.getOutputStream();
        os.write(buffer);
        os.close();

        con.connect();
        con.getResponseMessage();
           InputStreamReader inputStreamReader = new InputStreamReader(
                con.getInputStream(), "UTF-8");
        BufferedReader br = new BufferedReader(inputStreamReader);
        String s;
        StringBuilder resultContent = new StringBuilder();

        while ((s = br.readLine()) != null) {
            resultContent.append(s + "\n");
        }
        JSONObject jsonResponse = new JSONObject(resultContent.toString());
        JSONArray jsonArray = jsonResponse.getJSONArray("hypotheses");
        Log.e("Response String: ", resultContent.toString());
        if (jsonArray.length() != 0) {

            output = jsonArray.getJSONObject(0).getString("utterance");
            confidence_level = Double.parseDouble(jsonArray
                    .getJSONObject(0).getString("confidence"));
        } else if (jsonArray.length() == 0) {

        }
        // output=resultContent.toString();

    } catch (Exception e) {
        output = "";
        confidence_level = -1;
        e.printStackTrace();

        Log.e("ERROR IN PARSING:", e.toString());
        if (e.toString().contains("java.net.UnknownHostException:")||e.toString().contains("java.net.SocketException")) {

            return "NETWORK ISSUE";
        }

    }
    return null;
}

还有人有同样的问题吗?。


Tags: httpscomapinewstringwwwgooglecon
3条回答

如果您正在寻找Java API,请检查this一个。它支持新的双工API和V2 API。还提供了一个方便的教程。在Google关闭V1之前迁移可能是一个好主意,如果他们还没有。

最近谷歌关闭了v1 API。V2 API现在需要一个密钥,流式V2 API限制为每天50个请求。您可以按如下所述获取密钥:

http://www.chromium.org/developers/how-tos/api-keys

然而,没有保证无限使用。

https://github.com/gillesdemey/google-speech-v2

不可能获得Chrome语音API的额外配额。 而是看Cloud Speech API

不要向任何Chromium组/邮件列表发送有关语音API的问题。

相关问题 更多 >