The Third
The Third

Reputation: 795

How to implement a simple google web speech api with help of node,js

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

Answers (1)

Risto Novik
Risto Novik

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

Related Questions