echogarden
Version:
An easy-to-use speech toolset. Includes tools for synthesis, recognition, alignment, speech translation, language detection, source separation and more.
7 lines (6 loc) • 315 B
TypeScript
import { GnuSpeechOptions } from '@echogarden/gnuspeech-wasm';
import { SynthesisVoice } from '../api/Synthesis.js';
export declare function synthesize(text: string, options: GnuSpeechOptions): Promise<{
rawAudio: import("@echogarden/wave-codec").RawAudio;
}>;
export declare const voiceList: SynthesisVoice[];