Interface AudioWord

AudioWord represents a word in audio transcription.

interface AudioWord {
    end: number;
    speaker?: string;
    start: number;
    text: string;
}

Properties

Properties

end: number

end represents the end time of the word in seconds.

speaker?: string

speaker represents the speaker of the word.

start: number

start represents the start time of the word in seconds.

text: string

text represents the text for the word.