Skip to content

Word-level transcripts from .NET interface? #91

Closed Answered by BrianHillis-DG
williamj77 asked this question in General help
Discussion options

You must be logged in to vote

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,
Brian

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by briancbarrow
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants