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 only 16kHz.

Is there any way to adjust this setting?

using (System.IO.FileStream stream = System.IO.File.Create("message.wav"))
{

System.Speech.Synthesis.SpeechSynthesizer speechEngine = new System.Speech.Synthesis.SpeechSynthesizer();

 speechEngine.SetOutputToWaveStream(stream);
 speechEngine.Speak(number);
 stream.Flush();
}
link|improve this question

67% accept rate
feedback

1 Answer

up vote 4 down vote accepted

SetOutputToWaveFile() has an overload that accepts a SpeechAudioFormatInfo parameter, which can be used to set the sample rate. Don't see one for SetOutputToWaveStream(), oddly, but since you're writing to a file anyway, that should work.

Edit:

As @Hans points out, the correct overload is SetOutputToAudioStream() to write to a stream.

link|improve this answer
1  
SetOutputToAudioStream() is the alternative. – Hans Passant Apr 12 '10 at 21:57
@Hans, Ahh, I see. Odd that they weren't consistent in their naming... SetOutputToAudioFile() for non-wave format, or an overloaded SetOutputToWaveStream(). Updated answer. :) – Tanzelax Apr 12 '10 at 22:15
Perfect solution. I have my wav files in just the right format! – Adrian Apr 14 '10 at 15:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.