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