LMNTTTSFormat
Supported LMNT TTS audio output formats.
type LMNTTTSFormat = "mp3" | "wav" | "aac" | "ulaw" | "webm" | "pcm_s16le" | "pcm_f32le";
Defined in: src/providers/tts/lmnt/LMNTTTS.ts:49
Supported LMNT TTS audio output formats.
Remarks
The format affects both file size and audio quality.
mp3— 96kbps MP3 audio; good compression, widely supported (default)wav— 16-bit PCM audio in a WAV container; uncompressed, highest qualityaac— AAC audio codec; good for mobile devicesulaw— 8-bit G711 µ-law audio with a WAV header (telephony)webm— WebM container with Opus audio codecpcm_s16le— Raw PCM, signed 16-bit little-endian (no container)pcm_f32le— Raw PCM, 32-bit floating-point little-endian (no container)