Tagged Questions
The speechsynthesizer tag has no wiki summary.
4
votes
1answer
732 views
SpeechSynthesizer in C# creates wav that has 22kHz… needs to be 16kHz
My C# application needs to covert text to wav file and inject it into a Skype call. The code that creates the wav file is below. The problem is that the file has 22kHz sample rate and Skype accepts ...
2
votes
2answers
343 views
C# SpeechSynthesizer makes service unresponsive
I have the folowing code
[WebMethod]
public byte[] stringToWav(string text)
{
SpeechSynthesizer ss = new SpeechSynthesizer();
MemoryStream ms = new MemoryStream();
...
2
votes
1answer
760 views
TTS to Stream with SpeechAudioFormatInfo using SpeechSynthesizer
I am using System.Speech.Synthesis.SpeechSynthesizer to convert text to speech. And due to Microsoft's anemic documentation (see my link, there's no remarks or code examples) I'm having trouble making ...
2
votes
3answers
1k views
Is there any japanese TTS voice to work with C# SpeechSynthesizer
Is there any Japanese voice for C#'s SpeechSynthesizer TTS?
If so please state detailed information about it, better if documentation provided.
Thanks in advance.
2
votes
1answer
234 views
SpeechSynthezier.PhonemeReached event and control characters
I am creating a small silverlight widget which pronounces a word and highlights each syllable as it is pronounced.
As part of this, I am using the SpeechSynthesizer.PhonemeReached event to determine ...
1
vote
1answer
114 views
SpeechSynthesizer in ASP.NET - async error
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:
...
1
vote
3answers
934 views
Text to MP3 using System.Speech.Synthesis.SpeechSynthesizer
I am trying to get a text-to-speech to save to an MP3.
Currently I have the System.Speech.Synthesis speaking to a WAV file nicely.
With New System.Speech.Synthesis.SpeechSynthesizer
...
1
vote
1answer
746 views
Posting xml with ServerXMLHTTP timeout
I'm working on two websites. One is an existing classic asp site which posts xml to a new asp.net (.net 3.5) website. The classic asp site is using msxml's serverxmlhttp object in vbscript to send ...
0
votes
0answers
17 views
enable all buttons after Speechsynthesizer is stopped
i have a problem. i dont know how to use the speechsynthesizer with the use of if else or switch statement. all i want to do is when a speechsythesizer is playing the buttons for volume and speech ...
0
votes
1answer
339 views
No voice installed on the system or none available with the current security setting
Exception on IIS Server When try to create .wav file on c# using SpeechSynthesizer.
0
votes
1answer
65 views
Can you recommend a speech synthesiser for .NET?
I've used the built in speech synthesiser with C#/.NET but the options are limited and I'd like something more flexible. Any recommendations?
0
votes
2answers
437 views
C# WinForm not Responsive - System.Speech - Help
Here's a code from the C# Windows Form
SpeechSynthesizer audio = new SpeechSynthesizer();
audio.Speak(textBox1.Text);
This will read anything that is in the textbox
Problem in trying to ...
0
votes
1answer
504 views
Are the SpeakCompletedEventArgs of the SpeechSynthesizer inaccurate?
Using the System.Speech.Synthesis.SpeechSynthesizer class in .Net 3.5, the AudioPosition property of the SpeakProgressEventArgs appears to be inaccurate.
The following code produces the following ...