UNPKG

@snowdigital/whisper-node

Version:
11 lines 401 B
import { Logger, WhisperOptions } from './types'; export interface IOptions { modelName: string; autoDownloadModelName?: string; whisperOptions?: WhisperOptions; withCuda?: boolean; removeWavFileAfterTranscription?: boolean; logger?: Logger | null; } export declare function nodewhisper(filePath: string, options: IOptions): Promise<string>; //# sourceMappingURL=index.d.ts.map