4

I'm using Speech Synthesis (Web Speech API) to convert text to speech, but I can't figure how to download produced audio. I thought about using recorder.js, but hope there is easier process to access it.

For better illustration - IBM Watson Text-to-speech offers audio download.

mhlavacka
  • 691
  • 11
  • 25

1 Answers1

2

To the best of my knowledge, there's no way to do this as of now. Even recorder.js won't let you do that. The issue is that the web speech api and the web audio api don't play nicely together. Speech generated from the web speech api goes right to your speakers, and you don't get any opportunity to re-route it elsewhere.

Raphael Serota
  • 2,157
  • 10
  • 17