Class ElevenLabsTranscript
Inheritance
ElevenLabsTranscript
Assembly: Glitch9.AIDevKit.Provider.ElevenLabs.dll
Syntax
public class ElevenLabsTranscript : Transcript, ITextSource
Properties
|
Edit this page
View Source
Optional. Requested additional formats of the transcript.
Declaration
[JsonProperty("additional_formats")]
public List<ElevenLabsTranscript.Format> AdditionalFormats { get; set; }
Property Value
|
Edit this page
View Source
Language
Declaration
[JsonIgnore]
public override SystemLanguage Language { get; }
Property Value
| Type |
Description |
| SystemLanguage |
|
Overrides
|
Edit this page
View Source
LanguageCode
The detected language code (e.g. 'eng' for English).
Declaration
[JsonProperty("language_code")]
public string LanguageCode { get; set; }
Property Value
|
Edit this page
View Source
LanguageProbability
The confidence score of the language detection (0 to 1).
Declaration
[JsonProperty("language_probability")]
public double LanguageProbability { get; set; }
Property Value
|
Edit this page
View Source
Text
The raw text of the transcription.
Declaration
[JsonProperty("text")]
public override string Text { get; set; }
Property Value
Overrides
|
Edit this page
View Source
Words
List of words with their timing information.
Declaration
[JsonProperty("words")]
public List<ElevenLabsTranscript.Word> Words { get; set; }
Property Value
Implements
Extension Methods