如何从您的网站搜索谷歌语音识别?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何从您的网站搜索谷歌语音识别?相关的知识,希望对你有一定的参考价值。

我在网络浏览器中有一个“Jarvis”或个人助理。它运行在一些语音识别代码上。我会放在最底层。我想告诉它谷歌的东西,然后说出我想要它谷歌,然后让它自动谷歌它为我。

你可以帮忙吗?只是让你知道语音识别工作正常,但激活它的按钮没有在说明中显示。

<script>

        var x = document.getElementById("reconition");
        var message = document.querySelector('#message');
        var SpeechRecognition = SpeechRecognition || webkitSpeechRecognition;
        var SpeechGrammarList = SpeechGrammarList || webkitSpeechGrammarList;
        var grammar = '#JSGF V1.0;'
        var recognition = new SpeechRecognition();
        var speechRecognitionList = new SpeechGrammarList();
                speechRecognitionList.addFromString(grammar, 1);
                recognition.grammars = speechRecognitionList;
                recognition.lang = 'en-US';
                recognition.interimResults = false;
                recognition.onresult = function(event) {
                        var last = event.results.length - 1;
                        var command = event.results[last][0].transcript;
                        message.textContent = 'Voice Input: ' + command + '.';



                        if(command.toLowerCase() === 'google something'){
                                var msg = new SpeechSynthesisUtterance('what would you like for me to google');
                window.speechSynthesis.speak(msg);
                        }
  }




                    };
            recognition.onspeechend = function() {
                recognition.stop();
            };
            recognition.onerror = function(event) {
                message.textContent = 'Error occurred in recognition: ' + event.error;
            }
            document.querySelector('#btnGiveCommand').addEventListener('click', function(){
                recognition.start();
            });
答案

好吧,既然你没有指定你想要对结果做什么,你可以打开一个弹出窗口/使用iframe并用搜索查询打开一个谷歌网址。例如:

https://www.google.com/search?q=this+is+a+test

将打开谷歌与查询“这是一个测试”

q =参数实际上负责查询。

现在,如果你想以某种方式在你的页面上使用结果,一个选项可能是谷歌的自定义搜索API:qazxsw poi

以上是关于如何从您的网站搜索谷歌语音识别?的主要内容,如果未能解决你的问题,请参考以下文章

如何允许其他站点从您的站点检索数据?

hp服务器换主板后如何识别阵列

语音识别减少可能的搜索结果

语音识别会引发未知值错误

谷歌开放语音识别 API,对抗 Nuance

语音识别系统的免费 API