简体   繁体   中英

Web Speech API lag time — how fix?

I am using the Web Speech API in a web page. However, I am finding that it takes 3-5 seconds to bring back a result, which is a lot of lag time in today's web world. Has anyone else had this problem? Has anyone found a solution?

Here's the barebones of what I have so far -- it works, per se, but I need it to be faster.

var recognition = new webkitSpeechRecognition();        
    recognition.lang = 'en-US';
    recognition.onresult = function(evt) {
        console.log(evt);
};
recognition.start();

Assuming you don't a network speed issue, using

recognition.continuous = false;

will get a faster result (with some caveats)

see my detailed answer here

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM