Reputation: 795
I am looking for a step by step process. Or a good documentation that will help implement. So far I found this repo in github. But I could not understand how this can help https://www.npmjs.org/package/google-speech-api
Upvotes: 1
Views: 2509
Reputation: 8295
As the Google uses HTTP API you do not need to use any specific node module. That's why you could use simple HTTP request module to send/stream the file to google and get back the response. Here is small example how to do that https://gist.github.com/alotaiba/1730160.
Upvotes: 1