Esempio n. 1
0
 public static Phoneme[][] GetPhonemesFromText(string text)
 {
     try
     {
         speech.Voice = SystemVoices[0].Identifier;
         return(Phoneme.GetPhonemesFromString(speech.PhonemesFromText(text.Replace('-', ' '))));
     }
     catch (FormatException ex)
     {
         throw ex;
     }
 }