Text-to-speech, speech-to-text, voice conversion, and audio processing using EachLabs AI models. Supports ElevenLabs TTS, Whisper transcription with diarization, and RVC voice conversion. Use when the user needs TTS, transcription, or voice conversion.
Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.
Quelldateien prüfen
Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Ein direkter Befehl überspringt den Prüf-Prompt. Prüfen Sie die Quelle, bevor Sie ihn ausführen.
Text-to-speech, speech-to-text, voice conversion, and audio processing using EachLabs AI models. Supports ElevenLabs TTS, Whisper transcription with diarization, and RVC voice conversion. Use when the user needs TTS, transcription, or voice conversion.
metadata
{"author":"eachlabs","version":"1.0"}
EachLabs Voice & Audio
Text-to-speech, speech-to-text transcription, voice conversion, and audio utilities via the EachLabs Predictions API.
Authentication
Header: X-API-Key: <your-api-key>
Set the EACHLABS_API_KEY environment variable. Get your key at eachlabs.ai.
Available Models
Text-to-Speech
Model
Slug
Best For
ElevenLabs TTS
elevenlabs-text-to-speech
High quality TTS
ElevenLabs TTS w/ Timestamps
elevenlabs-text-to-speech-with-timestamp
TTS with word timing
ElevenLabs Text to Dialogue
elevenlabs-text-to-dialogue
Multi-speaker dialogue
ElevenLabs Sound Effects
elevenlabs-sound-effects
Sound effect generation
ElevenLabs Voice Design v2
elevenlabs-voice-design-v2
Custom voice design
Kling V1 TTS
kling-v1-tts
Kling text-to-speech
Kokoro 82M
kokoro-82m
Lightweight TTS
Play AI Dialog
play-ai-text-to-speech-dialog
Dialog TTS
Stable Audio 2.5
stable-audio-2-5-text-to-audio
Text to audio
Speech-to-Text
Model
Slug
Best For
ElevenLabs Scribe v2
elevenlabs-speech-to-text-scribe-v2
Best quality transcription
ElevenLabs STT
elevenlabs-speech-to-text
Standard transcription
Wizper with Timestamp
wizper-with-timestamp
Timestamped transcription
Wizper
wizper
Basic transcription
Whisper
whisper
Open-source transcription
Whisper Diarization
whisper-diarization
Speaker identification
Incredibly Fast Whisper
incredibly-fast-whisper
Fastest transcription
Voice Conversion & Cloning
Model
Slug
Best For
RVC v2
rvc-v2
Voice conversion
Train RVC
train-rvc
Train custom voice model
ElevenLabs Voice Clone
elevenlabs-voice-clone
Voice cloning
ElevenLabs Voice Changer
elevenlabs-voice-changer
Voice transformation
ElevenLabs Voice Design v3
elevenlabs-voice-design-v3
Advanced voice design
ElevenLabs Dubbing
elevenlabs-dubbing
Video dubbing
Chatterbox S2S
chatterbox-speech-to-speech
Speech to speech
Open Voice
openvoice
Open-source voice clone
XTTS v2
xtts-v2
Multi-language voice clone
Stable Audio 2.5 Inpaint
stable-audio-2-5-inpaint
Audio inpainting
Stable Audio 2.5 A2A
stable-audio-2-5-audio-to-audio
Audio transformation
Audio Trimmer
audio-trimmer-with-fade
Audio trimming with fade
Audio Utilities
Model
Slug
Best For
FFmpeg Merge Audio Video
ffmpeg-api-merge-audio-video
Merge audio with video
Toolkit Video Convert
toolkit
Video/audio conversion
Prediction Flow
Check modelGET https://api.eachlabs.ai/v1/model?slug=<slug> — validates the model exists and returns the request_schema with exact input parameters. Always do this before creating a prediction to ensure correct inputs.
POSThttps://api.eachlabs.ai/v1/prediction with model slug, version "0.0.1", and input matching the schema
PollGET https://api.eachlabs.ai/v1/prediction/{id} until status is "success" or "failed"
Extract the output from the response
Examples
Text-to-Speech with ElevenLabs
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "elevenlabs-text-to-speech",
"version": "0.0.1",
"input": {
"text": "Welcome to our product demo. Today we will walk through the key features.",
"voice_id": "EXAVITQu4vr4xnSDxMaL",
"model_id": "eleven_v3",
"stability": 0.5,
"similarity_boost": 0.7
}
}'