Class ElevenLabsTranscript.Word
Inherited Members
Namespace: Glitch9.AIDevKit.ElevenLabs
Assembly: Glitch9.AIDevKit.Provider.ElevenLabs.dll
Syntax
public class ElevenLabsTranscript.Word
Properties
| Edit this page View SourceCharacters
Optional. List of characters with their timing information.
Declaration
[JsonProperty("characters")]
public List<ElevenLabsTranscript.Character> Characters { get; set; }
Property Value
| Type | Description |
|---|---|
| List<ElevenLabsTranscript.Character> |
End
The end time of the word in seconds.
Declaration
[JsonProperty("end")]
public double End { get; set; }
Property Value
| Type | Description |
|---|---|
| double |
SpeakerId
The ID of the speaker who spoke the word.
Declaration
[JsonProperty("speaker_id")]
public string SpeakerId { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Start
The start time of the word in seconds.
Declaration
[JsonProperty("start")]
public double Start { get; set; }
Property Value
| Type | Description |
|---|---|
| double |
Text
The text of the word.
Declaration
[JsonProperty("text")]
public string Text { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Type
The type of the token (e.g., 'word', 'spacing').
Declaration
[JsonProperty("type")]
public string Type { get; set; }
Property Value
| Type | Description |
|---|---|
| string |