Class WhisperResult
Result of Whisper transcription.
public class WhisperResult
- Inheritance
-
WhisperResult
- Inherited Members
Properties
DetectedLanguage
Gets or sets the detected language code.
public string? DetectedLanguage { get; set; }
Property Value
LanguageProbability
Gets or sets the language detection probability.
public double LanguageProbability { get; set; }
Property Value
ProcessingTimeMs
Gets or sets the processing time in milliseconds.
public long ProcessingTimeMs { get; set; }
Property Value
Segments
Gets or sets the segment-level timestamps.
public List<WhisperSegment> Segments { get; set; }
Property Value
Text
Gets or sets the transcribed text.
public string Text { get; set; }
Property Value
Words
Gets or sets the word-level timestamps if requested.
public List<WhisperWord> Words { get; set; }