How to save text-to-speech as a wav with Microsoft SAPI? - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T03:52:55Zhttp://stackoverflow.com/feeds/question/963503http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/963503/how-to-save-text-to-speech-as-a-wav-with-microsoft-sapi1How to save text-to-speech as a wav with Microsoft SAPI?Aaron2009-06-08T05:17:46Z2009-06-08T14:41:13Z
<p>Hi,</p>
<p>I think what I am about to want might be easy for you,so I decided to ask it to you,</p>
<p>Fist I need to turn a text into speech and then save it as wav file.</p>
<p>Could you help me ?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/963503/how-to-save-text-to-speech-as-a-wav-with-microsoft-sapi/963536#9635362Answer by Michael Petrotta for How to save text-to-speech as a wav with Microsoft SAPI?Michael Petrotta2009-06-08T05:37:34Z2009-06-08T05:37:34Z<p>This is from a few moments' play, so caveat emptor. Worked well for me. I did notice that SpFileStream (which doesn't implement IDisposable, thus the try/finally) prefers absolute paths to relative. C#.</p>
<pre><code> SpFileStream fs = null;
try
{
SpVoice voice = new SpVoice();
fs = new SpFileStream();
fs.Open(@"c:\hello.wav", SpeechStreamFileMode.SSFMCreateForWrite, false);
voice.AudioOutputStream = fs;
voice.Speak("Hello world.", SpeechVoiceSpeakFlags.SVSFDefault);
}
finally
{
if (fs != null)
{
fs.Close();
}
}
</code></pre>
http://stackoverflow.com/questions/963503/how-to-save-text-to-speech-as-a-wav-with-microsoft-sapi/963550#9635503Answer by Mackenzie for How to save text-to-speech as a wav with Microsoft SAPI?Mackenzie2009-06-08T05:42:20Z2009-06-08T05:42:20Z<p>The following C# code uses the System.Speech namespace in the .Net framework.
It is necessary to reference the namespace before using it, because it is not automatically referenced by Visual Studio.</p>
<pre><code> SpeechSynthesizer ss = new SpeechSynthesizer();
ss.Volume = 100;
ss.SelectVoiceByHints(VoiceGender.Female, VoiceAge.Adult);
ss.SetOutputToWaveFile(@"C:\MyAudioFile.wav");
ss.Speak("Hello World");
</code></pre>
<p>I hope this is relevant and helpful.</p>
http://stackoverflow.com/questions/963503/how-to-save-text-to-speech-as-a-wav-with-microsoft-sapi/963691#9636911Answer by Aaron for How to save text-to-speech as a wav with Microsoft SAPI?Aaron2009-06-08T06:46:05Z2009-06-08T06:46:05Z<p>And as I've found for how to change output format, we code something like this :</p>
<pre><code>SpeechAudioFormatInfo info = new SpeechAudioFormatInfo(6, AudioBitsPerSample.Sixteen, AudioChannel.Mono);
//Same code comes here
ss.SetOutputToWaveFile(@"C:\MyAudioFile.wav",info);
</code></pre>
<p>That's pretty easy and comprehensible.</p>
<p>Cool .net</p>