Word-level transcripts from .NET interface? #91
-
Hello, How do I extract the word-level JSON results using the ,NET interface? Here is my code:
Thanks. Regards, |
Beta Was this translation helpful? Give feedback.
Answered by
BrianHillis-DG
Feb 2, 2023
Replies: 1 comment
-
Hi @williamj77 , To get the words array, you can do: var words = response.Results.Channels.First().Alternatives.First().Words; which enables something like: foreach(var word in words){
Console.WriteLine(word.PunctuatedWord);
} Hope this helps! Happy Hacking! Best, |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
briancbarrow
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @williamj77 ,
To get the words array, you can do:
which enables something like:
Hope this helps! Happy Hacking!
Best,
Brian