Class OpenAITranscript
Represents a verbose json transcription response returned by model, based on the provided input.
Inherited Members
Namespace: Glitch9.AIDevKit.OpenAI
Assembly: .dll
Syntax
public class OpenAITranscript : Transcript
Properties
Duration
The duration of the input audio.
Declaration
public long Duration { get; set; }
Property Value
Type | Description |
---|---|
long |
Language
The language of the input audio.
Declaration
public override SystemLanguage Language { get; set; }
Property Value
Type | Description |
---|---|
SystemLanguage |
Overrides
Segments
Segments of the transcribed text and their corresponding details.
Declaration
public SegmentObject[] Segments { get; set; }
Property Value
Type | Description |
---|---|
SegmentObject[] |
Text
The transcribed text.
Declaration
public override string Text { get; set; }
Property Value
Type | Description |
---|---|
string |
Overrides
Words
Extracted words and their corresponding timestamps.
Declaration
public WordObject[] Words { get; set; }
Property Value
Type | Description |
---|---|
WordObject[] |