gpt4 book ai didi

google-chrome - Chrome 语音 API 网络错误

转载 作者:行者123 更新时间:2023-12-01 05:06:36 27 4
gpt4 key购买 nike

我正在尝试使用 Chrome 网络语音 API 创建一个 PHP 网络应用程序。我总是收到网络错误。但是,我有一个良好的网络连接。

window.SpeechRecognition = window.SpeechRecognition 
|| window.webkitSpeechRecognition || null;
if (window.SpeechRecognition === null) {
} else {
var recognizer = new window.SpeechRecognition();
recognizer.continuous = false;
recognizer.lang = 'en-US';
recognizer.onstart = function() {
recognizing = true;
};
recognizer.onresult = function(event) {
};
}
recognizer.onerror = function(event) {
alert(event.error);
ignore_onend = true;
if (event.error == 'not-allowed') {
alert("Allow to access your microphone");
}
recognizer.stop();
recognizer.start();
};

谢谢

最佳答案

自上次 Google 更新以来,我遇到了类似的问题,我确信上次更新中存在错误。我在 RecognizerIntent 上有类似的帖子,在最新的 Google 搜索更新后出现错误
我的 android 应用程序给出了识别网络错误。到那时,没有网络问题。
总之,错误是 W/JavaNetConnection: Failed to get connection status。 java.io.FileNotFoundException: https://www.google.com/m/voice-search/down?pair=6239918a-dc45-4eea-ac6f-b9bf8de57ced

关于google-chrome - Chrome 语音 API 网络错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27917914/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com