Alameen Ipaye
Alameen Ipaye

Reputation: 49

Speech to text in Electron

Is there a way I can record audio in electron? I would also like to find out if it is possible to use Google speech API to convert speech to text in electron

Upvotes: 2

Views: 3380

Answers (1)

Niklas Higi
Niklas Higi

Reputation: 2309

Is there a way I can record audio in electron?

Of course. Electron is based on Chromium and Node.js so you have access to:

I would also like to find out if it is possible to use Google speech API to convert speech to text in electron

Yes. There's an official Node.js package for the Google Cloud Speech API. Again, an Electron-specific solution is not needed in this case.

Upvotes: 2

Related Questions