how to use the voices of virtual assistants separately in c #?

0
Choices lista = new Choices();

lista.Add(new string[] { "Hola Helena" });

Grammar gramatica = new Grammar(new GrammarBuilder(lista));

try
{
     reconocedor.SetInputToDefaultAudioDevice();
     reconocedor.LoadGrammar(gramatica);
     reconocedor.SpeechRecognized += Reconoce;
     reconocedor.RecognizeAsync(RecognizeMode.Multiple);
}
catch (Exception)
{
     throw;
}
     Console.ReadLine();
    
asked by Omar Guerra 23.03.2018 в 21:42
source

0 answers