1

I would like to know how to get the raw phonetic data from System.Speech in C#.

World or sentence recognition work great, but it's "interpreted" to give a coherent and grammatically correct sentence. I don't want that; I am looking for a way to get just the translation of audio to phonetics, without interpretation.

Knowledge Cube
  • 990
  • 12
  • 35
Alex
  • 23
  • 6
  • Possible duplicate of [C# return speech phonetic without recognize it](https://stackoverflow.com/questions/6063823/c-sharp-return-speech-phonetic-without-recognize-it) – Knowledge Cube Jun 02 '17 at 14:45

1 Answers1

0

I have found what I was looking for here: Speech to Phoneme in .Net

There is a pronunciation argument for the grammar that can be used with dictation mode:

new DictationGrammar("grammar:dictation#pronunciation");
Alex
  • 23
  • 6