Class GoogleCloudVideointelligenceV1beta2SpeechRecognitionAlternative
Alternative hypotheses (a.k.a. n-best list).
Implements
Inherited Members
Namespace: Google.Apis.CloudVideoIntelligence.v1beta2.Data
Assembly: Google.Apis.CloudVideoIntelligence.v1beta2.dll
Syntax
public class GoogleCloudVideointelligenceV1beta2SpeechRecognitionAlternative : IDirectResponseSchema
Properties
Confidence
Output only. The confidence estimate between 0.0 and 1.0. A higher number indicates an estimated greater
likelihood that the recognized words are correct. This field is set only for the top alternative. This field
is not guaranteed to be accurate and users should not rely on it to be always provided. The default of 0.0
is a sentinel value indicating confidence
was not set.
Declaration
[JsonProperty("confidence")]
public virtual float? Confidence { get; set; }
Property Value
Type | Description |
---|---|
float? |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Transcript
Transcript text representing the words that the user spoke.
Declaration
[JsonProperty("transcript")]
public virtual string Transcript { get; set; }
Property Value
Type | Description |
---|---|
string |
Words
Output only. A list of word-specific information for each recognized word. Note: When
enable_speaker_diarization
is set to true, you will see all the words from the beginning of the audio.
Declaration
[JsonProperty("words")]
public virtual IList<GoogleCloudVideointelligenceV1beta2WordInfo> Words { get; set; }
Property Value
Type | Description |
---|---|
IList<GoogleCloudVideointelligenceV1beta2WordInfo> |