UNPKG

@remotion/install-whisper-cpp

Version:

Helpers for installing and using Whisper.cpp

9 lines (8 loc) 348 B
export type OnProgress = (downloadedBytes: number, totalBytes: number) => void; export declare const downloadFile: ({ fileStream, url, printOutput, onProgress, signal, }: { fileStream: NodeJS.WritableStream; url: string; printOutput: boolean; onProgress: OnProgress | undefined; signal: AbortSignal | null; }) => Promise<void>;