echogarden
Version:
An easy-to-use speech toolset. Includes tools for synthesis, recognition, alignment, speech translation, language detection, source separation and more.
13 lines (8 loc) • 301 B
text/typescript
import { AudioSourceParam } from "../audio/AudioUtilities.js";
export async function searchSpeech(inputAudio: AudioSourceParam, text: string, options: SpeechSearchOptions): Promise<SpeechSearchResult> {
return {}
}
export interface SpeechSearchOptions {
}
export interface SpeechSearchResult {
}