where to get SAPI ? - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T05:16:12Zhttp://stackoverflow.com/feeds/question/755974http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/755974/where-to-get-sapi0where to get SAPI ?Attilah2009-04-16T12:48:35Z2009-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#7560230Answer by Blank Xavier for where to get SAPI ?Blank Xavier2009-04-16T13:03:12Z2009-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#7560243Answer by divo for where to get SAPI ?divo2009-04-16T13:03:24Z2009-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&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#7742680Answer by shanxt3r for where to get SAPI ?shanxt3r2009-04-21T19:38:27Z2009-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&displaylang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?FamilyId=F26B1AA4-741A-433A-9BE5-FA919850BDBF&displaylang=en</a> that includes SAPI 5.3. </p>