我正在使用 c# 开发谷歌语音 API。
谷歌返回结果没有问题,它的响应显示在我的文本框中。
现在我希望在文本框中显示有限的文本。正如下面给出的响应,我只想显示已识别的文本,例如应该显示文本框you said Ball
。
应删除结果字符串和替代成绩单。
当我说 Ball 时,这是来自谷歌语音 API 的响应:
{"result":[]}
{"result":[
{"alternative":[
{"transcript":"boa"},
{"transcript":"ball"},
{"transcript":"bull"},
{"transcript":"boys"},
{"transcript":"call"}
],
"final":true}
],
"result_index":0}