UNPKG

js-tts-wrapper

Version:

A JavaScript/TypeScript library that provides a unified API for working with multiple cloud-based Text-to-Speech (TTS) services

47 lines (46 loc) 1.71 kB
import { AbstractTTSClient } from "../core/abstract-tts.js"; import type { SpeakOptions, TTSCredentials, UnifiedVoice } from "../types.js"; export interface CartesiaTTSOptions extends SpeakOptions { model?: string; voice?: string; format?: "mp3" | "wav" | "ogg" | "opus" | "aac" | "flac" | "pcm"; outputDir?: string; outputFile?: string; returnWordBoundaries?: boolean; onEnd?: () => void; providerOptions?: Record<string, unknown>; } export interface CartesiaTTSCredentials extends TTSCredentials { apiKey?: string; baseURL?: string; model?: string; properties?: Record<string, unknown> | string; propertiesJson?: string; } export declare class CartesiaTTSClient extends AbstractTTSClient { private apiKey; private baseUrl; private model; private outputFormat; constructor(credentials?: CartesiaTTSCredentials); private applyCredentialProperties; private processAudioTags; private prepareText; setModel(model: string): void; setVoice(voiceId: string): void; getProperty(property: string): any; setProperty(property: string, value: any): void; checkCredentials(): Promise<boolean>; protected getRequiredCredentials(): string[]; protected _getVoices(): Promise<any[]>; protected _mapVoicesToUnified(rawVoices: any[]): Promise<UnifiedVoice[]>; synthToBytes(text: string, options?: CartesiaTTSOptions): Promise<Uint8Array>; synthToBytestream(text: string, options?: CartesiaTTSOptions): Promise<{ audioStream: ReadableStream<Uint8Array>; wordBoundaries: Array<{ text: string; offset: number; duration: number; }>; }>; }