Table of Contents

Class SpeakerSegment<T>

Namespace
AiDotNet.Interfaces
Assembly
AiDotNet.dll

Represents a speaker segment in diarization output.

public class SpeakerSegment<T>

Type Parameters

T

The numeric type used for calculations.

Inheritance
SpeakerSegment<T>
Inherited Members

Properties

Confidence

Gets or sets the confidence score for this segment.

public T Confidence { get; set; }

Property Value

T

Duration

Gets the duration of this segment in seconds.

public double Duration { get; }

Property Value

double

EndTime

Gets or sets the end time in seconds.

public double EndTime { get; set; }

Property Value

double

Speaker

Gets or sets the speaker label (e.g., "Speaker_0" or actual name if known).

public string Speaker { get; set; }

Property Value

string

StartTime

Gets or sets the start time in seconds.

public double StartTime { get; set; }

Property Value

double