i test the speech,find it can't listen zh-CN
Any thoughts, @karelrosseel82 - you probably know more about this than we do. As far as I know, @Yan - we are just wrapping the standard JavaScript API. So whatever is available there should work through ZIM too.
Does that work for you now? If so, we can add it to ZIM.
no.
i try modify ZIM code
this.listen = function(interim, language) {
if (M=="ios") {zogy("not supported on iOS Web"); return this;}
if (zot(interim)) interim = true;
recognition.interimResults = this.interim = interim;
if (zot(language)){
recognition.lang = this.language;
}else{
recognition.lang=language;
}
try {
if (that.listenInterval) clearInterval(that.listenInterval);
recognition.start();
} catch (e) {
that.listenInterval = setInterval(function() {that.listen(interim, language);}, 200);
}
return this;
}
but browser give a error tip