Table of Contents

Class TranscriptionResult<T>

Namespace
AiDotNet.Interfaces
Assembly
AiDotNet.dll

Represents the result of a transcription operation.

public class TranscriptionResult<T>

Type Parameters

T

The numeric type used for calculations.

Inheritance
TranscriptionResult<T>
Inherited Members

Properties

Confidence

Gets or sets the confidence score for the transcription (0.0 to 1.0).

public T Confidence { get; set; }

Property Value

T

DurationSeconds

Gets or sets the total duration of the audio in seconds.

public double DurationSeconds { get; set; }

Property Value

double

Language

Gets or sets the detected or specified language.

public string Language { get; set; }

Property Value

string

Segments

Gets or sets the word-level segments with timestamps.

public IReadOnlyList<TranscriptionSegment<T>> Segments { get; set; }

Property Value

IReadOnlyList<TranscriptionSegment<T>>

Text

Gets or sets the transcribed text.

public string Text { get; set; }

Property Value

string