Table of Contents

Class WhisperResult

Namespace
AiDotNet.Audio.Whisper
Assembly
AiDotNet.dll

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

string

LanguageProbability

Gets or sets the language detection probability.

public double LanguageProbability { get; set; }

Property Value

double

ProcessingTimeMs

Gets or sets the processing time in milliseconds.

public long ProcessingTimeMs { get; set; }

Property Value

long

Segments

Gets or sets the segment-level timestamps.

public List<WhisperSegment> Segments { get; set; }

Property Value

List<WhisperSegment>

Text

Gets or sets the transcribed text.

public string Text { get; set; }

Property Value

string

Words

Gets or sets the word-level timestamps if requested.

public List<WhisperWord> Words { get; set; }

Property Value

List<WhisperWord>