Class SpeakerSegment<T>
- Namespace
- AiDotNet.Interfaces
- Assembly
- AiDotNet.dll
Represents a speaker segment in diarization output.
public class SpeakerSegment<T>
Type Parameters
TThe 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
EndTime
Gets or sets the end time in seconds.
public double EndTime { get; set; }
Property Value
Speaker
Gets or sets the speaker label (e.g., "Speaker_0" or actual name if known).
public string Speaker { get; set; }
Property Value
StartTime
Gets or sets the start time in seconds.
public double StartTime { get; set; }