Speech Recognition and Talking!

We have wrapped the JavaScript Speech API

in a nice easy ZIM way:

const speech = new Speech();
speech.talk("hello");
speech.listen();
speech.on("result", e=>{zog(e.words, e.confidence);});

Nice! There is more - check out the Bubbling video:

And the examples:

And the docs https://zimjs.com/docs.html?item=Speech

2 Likes