Loading...
Loading...
ElevenLabs text-to-speech with 22+ premium voices, multilingual support, and voice tuning via inference.sh CLI. Models: eleven_multilingual_v2 (highest quality), eleven_turbo_v2_5 (low latency), eleven_flash_v2_5 (ultra-fast). Capabilities: text-to-speech, voice selection, stability/style control, 32 languages. Use for: voiceovers, audiobooks, video narration, podcasts, accessibility, IVR. Triggers: elevenlabs, eleven labs, elevenlabs tts, premium tts, professional voice, ai voice, high quality tts, multilingual tts, eleven labs voice, voice generation, natural speech, realistic voice, voice over, speech synthesis
npx skill4agent add infsh-skills/skills elevenlabs-tts
Requires inference.sh CLI (). Install instructionsbelt
belt login
# Generate speech with ElevenLabs
belt app run elevenlabs/tts --input '{"text": "Hello, welcome to our product demo.", "voice": "aria"}'| Model | ID | Best For | Latency |
|---|---|---|---|
| Multilingual v2 | | Highest quality, 32 languages | ~250ms |
| Turbo v2.5 | | Balance of speed & quality | ~150ms |
| Flash v2.5 | | Ultra-low latency | ~75ms |
| Voice | Style |
|---|---|
| American, conversational |
| British, confident |
| American, warm |
| American, expressive |
| American, professional |
| British, soft |
| American, friendly |
| Voice | Style |
|---|---|
| British, authoritative |
| American, deep |
| American, mature |
| American, conversational |
| Transatlantic, intense |
| Australian, natural |
| American, casual |
| British, commanding |
| American, friendly |
| American, young |
| American, articulate |
| American, warm |
| American, confident |
| American, authoritative |
| American, bright |
belt app run elevenlabs/tts --input '{"text": "Welcome to our quarterly earnings presentation.", "voice": "george"}'# Highest quality
belt app run elevenlabs/tts --input '{
"text": "This is our premium multilingual model with the best quality.",
"voice": "aria",
"model": "eleven_multilingual_v2"
}'
# Ultra-fast for real-time applications
belt app run elevenlabs/tts --input '{
"text": "Flash model for low-latency applications.",
"voice": "brian",
"model": "eleven_flash_v2_5"
}'belt app run elevenlabs/tts --input '{
"text": "Fine-tune the voice characteristics for your use case.",
"voice": "bella",
"stability": 0.3,
"similarity_boost": 0.9,
"style": 0.4
}'| Parameter | Range | Effect |
|---|---|---|
| 0-1 | Higher = more consistent, lower = more expressive |
| 0-1 | Higher = closer to original voice character |
| 0-1 | Higher = more style exaggeration |
| true/false | Enhances speaker clarity |
# High-quality MP3
belt app run elevenlabs/tts --input '{
"text": "High quality audio output.",
"voice": "daniel",
"output_format": "mp3_44100_192"
}'| Format | Description |
|---|---|
| MP3 at 44.1kHz, 128kbps (default) |
| MP3 at 44.1kHz, 192kbps |
| Raw PCM at 16kHz |
| Raw PCM at 22.05kHz |
| Raw PCM at 24kHz |
| Raw PCM at 44.1kHz |
# Spanish
belt app run elevenlabs/tts --input '{
"text": "Hola, bienvenidos a nuestra presentación.",
"voice": "aria",
"model": "eleven_multilingual_v2"
}'
# French
belt app run elevenlabs/tts --input '{
"text": "Bonjour, bienvenue à notre démonstration.",
"voice": "alice",
"model": "eleven_multilingual_v2"
}'# 1. Generate voiceover
belt app run elevenlabs/tts --input '{
"text": "Introducing the future of AI-powered content creation.",
"voice": "george"
}' > voiceover.json
# 2. Create talking head video
belt app run bytedance/omnihuman-1-5 --input '{
"image_url": "https://portrait.jpg",
"audio_url": "<audio-url-from-step-1>"
}'# ElevenLabs multi-speaker dialogue
npx skills add inference-sh/skills@elevenlabs-dialogue
# ElevenLabs voice changer
npx skills add inference-sh/skills@elevenlabs-voice-changer
# ElevenLabs sound effects
npx skills add inference-sh/skills@elevenlabs-sound-effects
# All TTS models (Kokoro, DIA, Chatterbox, and more)
npx skills add inference-sh/skills@text-to-speech
# Full platform skill (all 250+ apps)
npx skills add inference-sh/skills@infsh-clibelt app list --category audio