Interface AudioSegment

AudioSegment represents a segment in audio transcription.

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

Properties

Properties

end: number

end represents the end time of the segment in seconds.

id: number

id represents the id of the segment.

speaker?: string

speaker represents the speaker of the segment.

start: number

start represents the start time of the segment in seconds.

text: string

text represents the text for the segment.