Class TranscriptionSegment<T>
- Namespace
- AiDotNet.Interfaces
- Assembly
- AiDotNet.dll
Represents a segment of transcribed text with timing information.
public class TranscriptionSegment<T>
Type Parameters
TThe 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
StartTime
Gets or sets the start time in seconds.
public double StartTime { get; set; }
Property Value
Text
Gets or sets the text content of this segment.
public string Text { get; set; }