I would like to be able to generate speech in my ASP.NET app by calling speak.aspx?text=Hello%20world
. This would give a response in .wav
format.
So far I have a blank page with code behind:
protected void Page_PreRender(object sender, EventArgs e)
{
using (var ss = new SpeechSynthesizer()) {
MemoryStream str = new MemoryStream();
ss.SetOutputToWaveStream(str);
ss.Speak(Server.UrlDecode(Request.QueryString["text"]));
Response.AddHeader("Content-Type", "audio/wav");
str.WriteTo(Response.OutputStream);
str.Close();
}
}
However this fails with message:
InvalidOperationException: Asynchronous operations are not allowed in this context. Page starting an asynchronous operation has to have the Async attribute set to true and an asynchronous operation can only be started on a page prior to PreRenderComplete event.
If I add Async="true"
to the @Page
directive, the code runs but a request for the page hangs indefinitely. Please could you let me know what's wrong, and show the correct code/approach to use?
Note I can't just use the Google text-to-speech API since it only allows strings of 100 characters or less.
Thank you.