UNPKG

nodejs-whisper

Version:

Node bindings for OpenAI's Whisper. Optimized for CPU.

21 lines (20 loc) 544 B
export interface WhisperOptions { outputInCsv?: boolean; outputInJson?: boolean; outputInJsonFull?: boolean; outputInLrc?: boolean; outputInSrt?: boolean; outputInText?: boolean; outputInVtt?: boolean; outputInWords?: boolean; translateToEnglish?: boolean; language?: string; timestamps_length?: number; wordTimestamps?: boolean; splitOnWord?: boolean; } export interface Logger { debug: (...args: any[]) => void; error: (...args: any[]) => void; log: (...args: any[]) => void; }