Skip to main content

ADD VOICE (SPEECH) CAPABILITY TO YOUR ASP.NET

Adding speech functionality to your site is so easy using the COM API available in the SAPI has a text-to-speech engine (TTS).

Mind you every machine with Windows XP has SAPI and TTS.

All you need do is to add a reference to a COM dll available in Microsoft Speech Object Library.

The dll's name is Interop.SpeechLib.dll

Namespace declare your dll as using SpeechLib;

Create a text box that will contain your text, add a button that will trigger the voice conversion as shown below:


protected void btnVoice_Click(object sender, EventArgs e)
{
SpVoice voice = new SpVoice();
try
{
voice.Speak(spText.Text, SpeechVoiceSpeakFlags.SVSFDefault);
}
catch (Exception ex)
{
throw ex;
}
}

QED. You are done now. Just make sure your speakers are on and you have got the right volume.

Comments

Popular posts from this blog

Get Sum of Columns in a SharePoint list (Threshold edition)

It is a known fact that once the treshold limit is reached in SP, everything seems frozen.  At this point you have some options. Increase the limit using powershell or from the Central Admin OR Index the columns that you will like to operate on and create views based on those. However programmatically if you want to sum a list that has reached its threshold.  You can do so in batches as hown below:          protected   void  GetSummary( out   long  ideas,  out   long  votes,  out   long  comments,  out   long  transform)         {              long  ideasum = 0;              long columntoSum = 0;              long  commentS...

Add Web Visual Studio templates to SharePoint Project

Would you like to add the web user control to SharePoint 2007 project development.  Then open the project file with notepad and add {349c5851-65df-11da-9384-00065b846f21} to the ProjectTypeGUIDs node.   The necessary change is shown below: < ProjectTypeGuids > {349c5851-65df-11da-9384-00065b846f21};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} </ ProjectTypeGuids >