UNPKG

echogarden

Version:

An easy-to-use speech toolset. Includes tools for synthesis, recognition, alignment, speech translation, language detection, source separation and more.

11 lines 457 B
import { Timeline } from '../utilities/Timeline.js'; import { RawAudio } from '../audio/AudioUtilities.js'; export declare function recognizeFile(filename: string, modelPath: string, verbose?: boolean): Promise<{ transcript: string; timeline: Timeline; }>; export declare function recognize(rawAudio: RawAudio, modelPath: string, verbose?: boolean): Promise<{ transcript: string; timeline: Timeline; }>; //# sourceMappingURL=VoskSTT.d.ts.map