Class ElevenLabsTranscript
Inheritance
object
ElevenLabsTranscript
Assembly: .dll
Syntax
public class ElevenLabsTranscript : Transcript
Properties
Optional. Requested additional formats of the transcript.
Declaration
public List<AdditionalFormat> AdditionalFormats { get; set; }
Property Value
Language
Declaration
public override SystemLanguage Language { get; }
Property Value
Type |
Description |
SystemLanguage |
|
Overrides
LanguageCode
The detected language code (e.g. 'eng' for English).
Declaration
public string LanguageCode { get; set; }
Property Value
LanguageProbability
The confidence score of the language detection (0 to 1).
Declaration
public double LanguageProbability { get; set; }
Property Value
Text
The raw text of the transcription.
Declaration
public override string Text { get; set; }
Property Value
Overrides
Words
List of words with their timing information.
Declaration
public List<Word> Words { get; set; }
Property Value
Type |
Description |
List<Word> |
|