How to save text-to-speech as a wav with Microsoft SAPI? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T03:52:55Z http://stackoverflow.com/feeds/question/963503 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/963503/how-to-save-text-to-speech-as-a-wav-with-microsoft-sapi 1 How to save text-to-speech as a wav with Microsoft SAPI? Aaron 2009-06-08T05:17:46Z 2009-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#963536 2 Answer by Michael Petrotta for How to save text-to-speech as a wav with Microsoft SAPI? Michael Petrotta 2009-06-08T05:37:34Z 2009-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#963550 3 Answer by Mackenzie for How to save text-to-speech as a wav with Microsoft SAPI? Mackenzie 2009-06-08T05:42:20Z 2009-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#963691 1 Answer by Aaron for How to save text-to-speech as a wav with Microsoft SAPI? Aaron 2009-06-08T06:46:05Z 2009-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>