Table of Contents

Class WhisperSegment

Namespace
AiDotNet.Audio.Whisper
Assembly
AiDotNet.dll

A segment of transcribed speech with timing.

public class WhisperSegment
Inheritance
WhisperSegment
Inherited Members

Properties

EndTime

Gets or sets the end time in seconds.

public double EndTime { get; set; }

Property Value

double

StartTime

Gets or sets the start time in seconds.

public double StartTime { get; set; }

Property Value

double

Text

Gets or sets the segment text.

public string Text { get; set; }

Property Value

string

Words

Gets or sets the words in this segment.

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

Property Value

List<WhisperWord>