Table of Contents

Class TranscriptionSegment<T>

Namespace
AiDotNet.Interfaces
Assembly
AiDotNet.dll

Represents a segment of transcribed text with timing information.

public class TranscriptionSegment<T>

Type Parameters

T

The numeric type used for calculations.

Inheritance
TranscriptionSegment<T>
Inherited Members

Properties

Confidence

Gets or sets the confidence score for this segment.

public T Confidence { get; set; }

Property Value

T

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 text content of this segment.

public string Text { get; set; }

Property Value

string