UNPKG

node-diarization

Version:

Transcription and diarization using Whisper and Pyannote with NodeJS

14 lines (13 loc) 268 B
import { Word } from "./TaskResult"; export interface UnionSegment { words: Word[]; info: { label?: boolean; text?: string; index?: number; start?: number; end?: number; }; speaker?: string; text?: string; }