问题 谷歌演讲Api v1无法正常工作?


我使用Google语音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;
}

还有其他人有同样的问题吗?


4845
2018-05-07 07:06


起源

没有回应,没有错误? - Raptor
java.io.FileNotFoundException: google.com/speech-api/v1 这是我得到的,响应为空 - sunil sunny
是时候切换到版本2了? - Raptor
版本2与版本1相同。我刚试过 google.com/speech-api/v2/...;但它仍然显示相同的错误。 - sunil sunny
是的,谷歌开始阻止广泛的API用户,考虑切换到其他东西。 - Nikolay Shmyrev


答案:


最近谷歌关闭了v1 API。 V2 API现在需要密钥,流式传输v2 API每天限制为50个请求。您可以按照此处的说明获取密钥:

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

但无限制使用无法保证。

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


14
2018-05-08 10:05





如果您正在寻找Java API检查 这个 一出。它支持新的Duplex API和V2 API。附带一个方便的教程。如果他们还没有关闭V1,那么在Google关闭之前移植可能是一个好主意。


2
2018-05-10 15:48



谢谢你的+1 ... - sunil sunny


Chrome的Speech API无法获得额外的配额。 看着那(这 Cloud Speech API 代替。

如果有关Speech API的问题,请不要发布到任何Chromium组/邮件列表。


0
2018-05-02 05:26