UNPKG

echogarden

Version:

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

8 lines (7 loc) 606 B
export declare function ipaPhoneToKirshenbaum(ipaPhone: string): string; export declare function ipaWordToTimitTokens(ipaWord: string, subphoneCount?: number): string[]; export declare function ipaPhoneToTimit(ipaPhone: string, subphoneCount?: number): string[] | undefined; export declare function arpabetPhoneToIpa(arpabetPhone: string): string | undefined; export declare function timitPhoneToIpa(arpabetPhone: string): string | undefined; export declare function splitTokensToSubphones(tokens: string[], subphoneCount?: number): string[]; export declare const ipaToKirshenbaum: Record<string, string>;