Evan Cohen

Results 67 comments of Evan Cohen

Thanks for the detailed issue! I've seen similar problems when the Pi's clock is set incorrectly: evancohen/smart-mirror#468 According to the @google-cloud/speech documentation there isn't anything explicit that you have to...

This is an issue with the google speech library, more specifically with the way that grpc handles ongoing connections: GoogleCloudPlatform/google-cloud-node#1905 Seems like the workaround is to extend the time allowed...

I believe this issue is now resolved. If it isn't I can reopen :)

Wit.ai has a [Node.js library](https://github.com/wit-ai/node-wit) but I'm pretty sure they don't support streaming in it anymore. Their deprecated library had support for this though, so there might be a way...

Wit doesn't provide a *streaming* speech to text service anymore (as far as I can tell), only NLP. My suggestion would be to pass along the recognized text to Wit...

I'd considered baking it into the library #25 but it's so simple to add on I'm not sure it's worth it. Super simple sudocode example of how could do this:...

It's just sudocode. You'd replace that with whatever actual intent processor you have. If you say the hotword while cloud recognition is in progress is will not begin another recognition.

Are you use you are using `Sonus.pause()` correctly? You cannot call `.pause()` on your created Sonus object. To be clear: ``` javascript const sonus = Sonus.init({ hotwords }, speech) sonus.pause()...

I'll be online after work today and will have time to take a look at this and give you a hand. There's an unofficial Discord channel: https://discord.gg/35zesAR I should be...

@sharmmoh1983 please open separate issues for new questions. Right now there is no support for multiple simultaneous languages: [`API.md#languages`](https://github.com/evancohen/sonus/blob/master/docs/API.md#languages) I'm closing this issue because it has been resolved.