using SpeechLib;
using System.Threading;
private void button1_Click(object sender, EventArgs e)
{
if (textBox1.Text != "")
{
SpVoice voice = new SpVoice();
voice.Volume = 100;
voice.Speak(textBox1.Text, SpeechVoiceSpeakFlags.SVSFlagsAsync);
voice.WaitUntilDone(Timeout.Infinite);
}
else
MessageBox.Show("Please enter text for speech","Text to Speech", MessageBoxButtons.OK,MessageBoxIcon.Information);
}
This is the my code. This code only converts Text to Speech but i want opposite of it i.e. How to convert Speech to Text using c#.net.
Please provide me a solution as soon as possible, otherwise it will be too late.
Thanks in advance.

New Topic/Question
This topic is locked




MultiQuote






|