Merhabalar,
.Net Framework 4.0 ' dan sonra zaten Speech to Text mevcut. Ancak , Türkçe sesleri algılayamıyor sistem.
using System.Speech.Synthesis; isim uzayını ekleyiniz.
// Initialize a new instance of the SpeechSynthesizer.
using (SpeechSynthesizer synth = new SpeechSynthesizer())
{
// Configure the audio output.
synth.SetOutputToDefaultAudioDevice();
// Speak a string synchronously.
synth.Speak("What is your favorite color?");
}
Console.WriteLine();
Console.WriteLine("Press any key to exit...");
Console.ReadKey();