unintentional pitch change using MS SAPI TTS - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T19:20:19Zhttp://stackoverflow.com/feeds/question/92742http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/92742/unintentional-pitch-change-using-ms-sapi-tts1unintentional pitch change using MS SAPI TTSDan2008-09-18T13:55:56Z2009-06-21T02:23:40Z
<p>Has anyone else experienced (and possibly solved) unintentional pitch changes using MS SAPI TTS voices? </p>
<p>I'm using the SpVoice automation interface with SAPI 5.1.</p>
<p>Right now, my application (VB6 app) can get into a state where the TTS (Microsoft Anna) starts to sound like a chipmunk (proper rate, but high pitch) and even a reboot of Vista does not correct the issue. </p>
<p>I'm passing in XML to the Voice.Speak() function. I've tried sending < pitch absmiddle="0" /> before all other XML and it still does not correct the pitch issue. When I try the TTS voice preview in the Speech control panel, the voice has a normal pitch.</p>
<p>The issue has occurred for me in XP in the past, however a reboot seemed to correct it.</p>
http://stackoverflow.com/questions/92742/unintentional-pitch-change-using-ms-sapi-tts/98837#988370Answer by Jason Stevenson for unintentional pitch change using MS SAPI TTSJason Stevenson2008-09-19T02:01:04Z2008-09-19T02:01:04Z<p>I haven't seen that happen, although my experience is mostly with SAPI 5.3 with SSML, which gets translated (under the covers) to SAPI TTS.</p>
<p>Have you tried surrounding your text with the <code><pitch absmiddle="0"></code> Your Text Here instead of just at the front of the text?</p>
http://stackoverflow.com/questions/92742/unintentional-pitch-change-using-ms-sapi-tts/133089#1330891Answer by Dan for unintentional pitch change using MS SAPI TTSDan2008-09-25T12:44:14Z2008-09-25T12:44:14Z<p>Can you answer your own question? Can you ask another question in the answer? Too late... :)</p>
<p>My solution was to initialize the Voice.AudioOutputStream.format.Type to something sensible, like 16kHz16BitMono. I had a bug where if there is only one voice available, this initialization step could be skipped. Turns out that (for my project running in a Vista VMWare environment) if you don't set the audio format for the voice, you will get a high pitch voice. Good to know..</p>