Reputation: 49
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
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:
MediaStream
Recording API)node-audiorecorder
)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