where to get SAPI ? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T05:16:12Z http://stackoverflow.com/feeds/question/755974 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/755974/where-to-get-sapi 0 where to get SAPI ? Attilah 2009-04-16T12:48:35Z 2009-06-21T02:19:18Z <p>Hello, Folks !</p> <p>i want to create an application that is speech-enabled but whenever i get to MS website to download SAPI, i get an error.</p> <p>I want to know where I can get SAPI.</p> <p>and I also would like to know if a SAPI 5.3 application can work on Windows 2000, Windows XP and Windows Vista (if coded with C++/MFC).</p> <p>also, what is the best way to use SAPI ? with C# .NET or C++/MFC ?</p> <p>Thanks.</p> http://stackoverflow.com/questions/755974/where-to-get-sapi/756023#756023 0 Answer by Blank Xavier for where to get SAPI ? Blank Xavier 2009-04-16T13:03:12Z 2009-04-16T13:03:12Z <p>Well, you get SAPI from MS. If they have a problem serving, you have a problem downloading!</p> <p>I used SAPI with C, so I can't comment on C#/C++.</p> <p>Also it was some years ago, so I don't know which version I used - but it ran fine on w2k, FWIW.</p> http://stackoverflow.com/questions/755974/where-to-get-sapi/756024#756024 3 Answer by divo for where to get SAPI ? divo 2009-04-16T13:03:24Z 2009-04-16T13:03:24Z <p>The <a href="http://en.wikipedia.org/wiki/Speech%5FApplication%5FProgramming%5FInterface" rel="nofollow">Microsoft Speech SDK</a> is availabe for download <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=5e86ec97-40a7-453f-b0ee-6583171b4530&amp;displaylang=en" rel="nofollow">here</a>.</p> <p>Whether to choose C# or C++ depends on your own preferences. When using .NET you will find everything related to speech recogition and synthesis in <code>System.Speech</code>. Add a reference to this assembly to your project and you will be able to use the Speech API directly. The following is a simple sample program demonstrating the text-to-speech functionality:</p> <pre><code>using System.Speech.Synthesis; class Program { static void Main(string[] args) { SpeechSynthesizer synth = new SpeechSynthesizer(); synth.Rate = -1; synth.Volume = 100; synth.SelectVoice("Microsoft Sam"); synth.Speak("Hello World"); } } </code></pre> http://stackoverflow.com/questions/755974/where-to-get-sapi/774268#774268 0 Answer by shanxt3r for where to get SAPI ? shanxt3r 2009-04-21T19:38:27Z 2009-04-21T19:38:27Z <p>I do not think you can download just Speech SDK 5.3 from the microsoft website. You can download windows platform SDK from <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=F26B1AA4-741A-433A-9BE5-FA919850BDBF&amp;displaylang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?FamilyId=F26B1AA4-741A-433A-9BE5-FA919850BDBF&amp;displaylang=en</a> that includes SAPI 5.3. </p>