ElevenLabsSTTAudioFormat
ElevenLabs STT audio format identifiers.
type ElevenLabsSTTAudioFormat =
| "pcm_16000"
| "pcm_22050"
| "pcm_24000"
| "pcm_44100"
| "mulaw_8000"
| string & {
};
Defined in: src/providers/stt/elevenlabs/ElevenLabsSTT.ts:47
ElevenLabs STT audio format identifiers.
Remarks
The format string encodes the encoding type and sample rate:
pcm_16000— 16-bit PCM at 16 kHz (default)pcm_22050— 16-bit PCM at 22.05 kHzpcm_24000— 16-bit PCM at 24 kHzpcm_44100— 16-bit PCM at 44.1 kHzmulaw_8000— mu-law at 8 kHz (telephony)
Custom format strings are also accepted via the string & {} type widening.