Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
pexoai avatar

Videoagent Audio Studio

  • 3.8k installs
  • 762 repo stars
  • Updated July 21, 2026
  • pexoai/pexo-skills

videoagent-audio-studio is an agent skill for generate tts, music, sound effects, and voice clones via elevenlabs and fal.ai from one audio dispatcher skill.

About

The videoagent-audio-studio skill Generate TTS, music, sound effects, and voice clones via ElevenLabs and fal.ai from one audio dispatcher skill. Use when: User asks to generate speech, narrate text, create a voice-over, compose music, or produce a sound effect. VideoAgent Audio Studio is a smart audio dispatcher. It analyzes your request and routes it to the best available model ElevenLabs for speech and music, fal.ai for fast SFX and returns a ready-to-use audio URL. Request Type Best Model Latency --- --- --- Narrate text / Voice-over elevenlabs-tts-v3 ~3s Low-latency TTS (real-time) elevenlabs-tts-turbo <1s Background music cassetteai-music ~15s Sound effect elevenlabs-sfx ~5s Clone a voice from audio elevenlabs-voice-clone ~10s 1. Start the AudioMind server (once per session) 1. Start the AudioMind server (once per session) bash bash {baseDir}/tools/start_server.sh This starts the ElevenLabs MCP server on port 8124. The skill uses it for all audio generation. Analyze the user's request and call the appropriate tool via the MCP server: When user asks to "narrate", "read aloud", "say", or "create a voice-over":

  • Simplified routing table: Removed unstable/offline models from the main reference. The skill now only surfaces models th
  • Clearer use-case triggers: Added "Use when" section so the agent activates this skill at the right moment.
  • Unified setup: Single ELEVENLABS_API_KEY is all you need to get started. FAL_KEY is now optional.
  • Removed polling complexity: Music generation now uses cassetteai-music by default, which completes synchronously.
  • Added async workflow for long-running music generation tasks.

Videoagent Audio Studio by the numbers

  • 3,845 all-time installs (skills.sh)
  • +9 installs in the week ending Aug 5, 2026 (Skillselion tracking)
  • Ranked #124 of 1,335 Generative Media skills by installs in the Skillselion catalog
  • Security screen: MEDIUM risk (skills.sh audit)
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

videoagent-audio-studio capabilities & compatibility

Capabilities
simplified routing table: removed unstable/offli · clearer use case triggers: added "use when" sect · unified setup: single elevenlabs_api_key is all · removed polling complexity: music generation now · added async workflow for long running music gene
Works with
openai
Use cases
video generation · transcription
From the docs

What videoagent-audio-studio says it does

This starts the ElevenLabs MCP server on port 8124. The skill uses it for all audio generation.
SKILL.md
Analyze the user's request and call the appropriate tool via the MCP server:
SKILL.md
When user asks to "narrate", "read aloud", "say", or "create a voice-over":
SKILL.md
npx skills add https://github.com/pexoai/pexo-skills --skill videoagent-audio-studio

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs3.8k
repo stars762
Security audit3 / 3 scanners passed
Last updatedJuly 21, 2026
Repositorypexoai/pexo-skills

How do I generate tts, music, sound effects, and voice clones via elevenlabs and fal.ai from one audio dispatcher skill with documented agent guidance?

Generate TTS, music, sound effects, and voice clones via ElevenLabs and fal.ai from one audio dispatcher skill.

Who is it for?

Developers who need generative media help during build work.

Skip if: Skip when the task falls outside Generative Media scope described in SKILL.md.

When should I use this skill?

Generate TTS, music, sound effects, and voice clones via ElevenLabs and fal.ai from one audio dispatcher skill.

What you get

Completed generative media workflow aligned with SKILL.md steps and validation.

  • TTS audio files
  • music and SFX assets
  • cloned voice outputs

By the numbers

  • Simplified routing table: Removed unstable/offline models from the main reference. The skill now only surfaces models th
  • Clearer use-case triggers: Added "Use when" section so the agent activates this skill at the right moment.
  • Unified setup: Single ELEVENLABS_API_KEY is all you need to get started. FAL_KEY is now optional.

Files

SKILL.mdMarkdownGitHub ↗

🎙️ VideoAgent Audio Studio

Use when: User asks to generate speech, narrate text, create a voice-over, compose music, or produce a sound effect.

VideoAgent Audio Studio is a smart audio dispatcher. It analyzes your request and routes it to the best available model — ElevenLabs for speech and music, fal.ai for fast SFX — and returns a ready-to-use audio URL.

---

Quick Reference

Request TypeBest ModelLatency
Narrate text / Voice-overelevenlabs-tts-v3~3s
Low-latency TTS (real-time)elevenlabs-tts-turbo<1s
Background musiccassetteai-music~15s
Sound effectelevenlabs-sfx~5s
Clone a voice from audioelevenlabs-voice-clone~10s

---

How to Use

1. Start the AudioMind server (once per session)

bash {baseDir}/tools/start_server.sh

This starts the ElevenLabs MCP server on port 8124. The skill uses it for all audio generation.

2. Route the request

Analyze the user's request and call the appropriate tool via the MCP server:

Text-to-Speech (TTS)

When user asks to "narrate", "read aloud", "say", or "create a voice-over":

Use MCP tool: text_to_speech
  text: "<the text to narrate>"
  voice_id: "JBFqnCBsd6RMkjVDRZzb"   # Default: "George" (professional, neutral)
  model_id: "eleven_multilingual_v2"   # Use "eleven_turbo_v2_5" for low latency

Music Generation

When user asks to "compose", "create background music", or "make a soundtrack":

Use MCP tool: text_to_sound_effects  (via cassetteai-music on fal.ai)
  prompt: "<music description, e.g. 'upbeat lo-fi hip hop, 90 seconds'>"
  duration_seconds: <duration>

Sound Effect (SFX)

When user asks for a specific sound (e.g., "a door creaking", "rain on a window"):

Use MCP tool: text_to_sound_effects
  text: "<sound description>"
  duration_seconds: <1-22>

Voice Cloning

When user provides an audio sample and wants to clone the voice:

Use MCP tool: voice_add
  name: "<voice name>"
  files: ["<audio_file_url>"]

---

Example Conversations

User: "Voice this text for me: Welcome to our product launch"

→ Route to: text_to_speech
  text: "Welcome to our product launch"
  voice_id: "JBFqnCBsd6RMkjVDRZzb"
  model_id: "eleven_multilingual_v2"
🎙️ Voiceover done! Listen here

---

User: "Generate 60 seconds of relaxing background music for a podcast"

→ Route to: cassetteai-music (fal.ai)
  prompt: "relaxing lo-fi background music for a podcast, gentle piano and soft beats, 60 seconds"
  duration_seconds: 60
🎵 Background music ready! Listen here

---

User: "Generate a sci-fi style door opening sound effect"

→ Route to: text_to_sound_effects
  text: "a futuristic sci-fi door sliding open with a hydraulic hiss"
  duration_seconds: 3

---

Setup

Required

Set ELEVENLABS_API_KEY in ~/.openclaw/openclaw.json:

{
  "skills": {
    "entries": {
      "videoagent-audio-studio": {
        "enabled": true,
        "env": {
          "ELEVENLABS_API_KEY": "your_elevenlabs_key_here"
        }
      }
    }
  }
}

Get your key at elevenlabs.io/app/settings/api-keys.

Optional (for fal.ai music & SFX models)

"FAL_KEY": "your_fal_key_here"

Get your key at fal.ai/dashboard/keys.

---

Self-Hosting the Proxy

The cli.js connects to a hosted proxy by default. If you want full control — or need to serve users in regions where vercel.app is blocked — you can deploy your own instance from the proxy/ directory.

Quick Deploy (Vercel)

cd proxy
npm install
vercel --prod

Environment Variables

Set these in your Vercel project (Dashboard → Settings → Environment Variables):

VariableRequired ForWhere to Get
ELEVENLABS_API_KEYTTS, SFX, Voice Cloneelevenlabs.io/app/settings/api-keys
FAL_KEYMusic generationfal.ai/dashboard/keys
VALID_PRO_KEYS(Optional) Restrict accessComma-separated list of allowed client keys

Point cli.js to Your Proxy

export AUDIOMIND_PROXY_URL="https://your-domain.com/api/audio"

Or set it in ~/.openclaw/openclaw.json:

{
  "skills": {
    "entries": {
      "videoagent-audio-studio": {
        "env": {
          "AUDIOMIND_PROXY_URL": "https://your-domain.com/api/audio"
        }
      }
    }
  }
}

Custom Domain (Recommended)

If your users are in mainland China, bind a custom domain in Vercel Dashboard → Settings → Domains to avoid DNS issues with vercel.app.

---

Model Reference

Model IDTypeProviderNotes
eleven_multilingual_v2TTSElevenLabsBest quality, supports 29 languages
eleven_turbo_v2_5TTSElevenLabsUltra-low latency, ideal for real-time
eleven_monolingual_v1TTSElevenLabsEnglish only, fastest
cassetteai-musicMusicfal.aiReliable, fast music generation
elevenlabs-sfxSFXElevenLabsHigh-quality sound effects (up to 22s)
elevenlabs-voice-cloneCloneElevenLabsClone any voice from a short audio sample

---

Changelog

v3.0.0

  • Simplified routing table: Removed unstable/offline models from the main reference. The skill now only surfaces models that reliably work.
  • Clearer use-case triggers: Added "Use when" section so the agent activates this skill at the right moment.
  • Unified setup: Single ELEVENLABS_API_KEY is all you need to get started. FAL_KEY is now optional.
  • Removed polling complexity: Music generation now uses cassetteai-music by default, which completes synchronously.

v2.1.0

  • Added async workflow for long-running music generation tasks.
  • Added cassetteai-music as a stable alternative for music generation.

v2.0.0

  • Migrated to ElevenLabs MCP server architecture.
  • Added voice cloning support.

v1.0.0

  • Initial release with TTS, music, and SFX routing.

Related skills

How it compares

videoagent-audio-studio is an agent skill for generate tts, music, sound effects, and voice clones via elevenlabs and fal.ai from one audio dispatcher skill, not a generic alternative.

FAQ

Who is videoagent-audio-studio for?

Developers using Generative Media workflows with agent-guided SKILL.md steps.

When should I use videoagent-audio-studio?

Generate TTS, music, sound effects, and voice clones via ElevenLabs and fal.ai from one audio dispatcher skill.

Is videoagent-audio-studio safe to install?

Review the Security Audits panel on this page before installing in production.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.