Skip to content
Skillv1.0.0

elevenlabs-dubbing

ElevenLabs automatic dubbing - translate and dub audio/video into 29 languages while preserving speaker voice via inference.sh CLI. Capabilities: auto speaker detection, voice-preserving translation,

by inference-sh(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from inference-sh/skills (tools/audio/elevenlabs-dubbing/SKILL.md) via skills.sh. Install upstream with npx skills add inference-sh/skills --skill elevenlabs-dubbing. Copyright stays with the author.

Install the belt CLI skill: npx skills add belt-sh/cli

ElevenLabs Dubbing

Automatically dub audio and video into 29 languages via inference.sh CLI.

Dubbing

Quick Start

Requires inference.sh CLI (belt). Install instructions

belt login

# Dub English video to Spanish
belt app run elevenlabs/dubbing --input '{
  "audio": "https://video.mp4",
  "target_lang": "es"
}'

Supported Languages

Code Language Code Language
en English ko Korean
es Spanish ru Russian
fr French tr Turkish
de German nl Dutch
it Italian sv Swedish
pt Portuguese da Danish
pl Polish fi Finnish
hi Hindi no Norwegian
ar Arabic cs Czech
zh Chinese el Greek
ja Japanese he Hebrew
hu Hungarian id Indonesian
ms Malay ro Romanian
th Thai uk Ukrainian
vi Vietnamese

Supported Input Formats

  • MP3, MP4, WAV, MOV

Examples

Dub Video to Spanish

belt app run elevenlabs/dubbing --input '{
  "audio": "https://english-video.mp4",
  "target_lang": "es"
}'

Dub Audio to French

belt app run elevenlabs/dubbing --input '{
  "audio": "https://podcast-episode.mp3",
  "target_lang": "fr"
}'

Specify Source Language

# Skip auto-detection, specify source
belt app run elevenlabs/dubbing --input '{
  "audio": "https://german-video.mp4",
  "source_lang": "de",
  "target_lang": "en"
}'

Multi-Language Distribution

# Dub to multiple languages
for lang in es fr de ja ko; do
  belt app run elevenlabs/dubbing --input "{
    \"audio\": \"https://video.mp4\",
    \"target_lang\": \"$lang\"
  }" > "dubbed_${lang}.json"
  echo "Dubbed to $lang"
done

Features

  • Auto Speaker Detection: Identifies multiple speakers automatically
  • Voice Preservation: Maintains original speaker voice characteristics
  • Timing: Matches original speech timing and pacing
  • Multi-Speaker: Handles videos with multiple speakers

Workflow: Localize Content Pipeline

# 1. Start with original video
# 2. Dub to target language
belt app run elevenlabs/dubbing --input '{
  "audio": "https://original-video.mp4",
  "target_lang": "es"
}' > dubbed.json

# 3. Add subtitles in target language
belt app run elevenlabs/stt --input '{
  "audio": "<dubbed-audio-url>",
  "language_code": "spa"
}' > transcript.json

# 4. Caption the dubbed video
belt app run infsh/caption-videos --input '{
  "video_url": "<dubbed-video-url>",
  "captions": "<transcript>"
}'

Use Cases

  • Content Creators: Reach international audiences
  • E-learning: Localize courses for global students
  • Marketing: Adapt campaigns for different markets
  • Podcasts: Distribute in multiple languages
  • Corporate: Multilingual training and communications
  • Film/TV: Quick dubbing for distribution

Related Skills

# ElevenLabs TTS (generate speech in any language)
npx skills add inference-sh/skills@elevenlabs-tts

# ElevenLabs STT (transcribe dubbed content)
npx skills add inference-sh/skills@elevenlabs-stt

# ElevenLabs voice changer (transform voices)
npx skills add inference-sh/skills@elevenlabs-voice-changer

# Full platform skill (all apps)
npx skills add inference-sh/skills@infsh-cli

Browse all audio apps: belt app list --category audio

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/inference-sh-skills-elevenlabs-dubbing/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

inference-sh-skills-elevenlabs-dubbing.ocm.jsonjson
{
  "ocm": "1",
  "id": "inference-sh-skills-elevenlabs-dubbing",
  "kind": "skill",
  "name": "elevenlabs-dubbing",
  "description": "ElevenLabs automatic dubbing - translate and dub audio/video into 29 languages while preserving speaker voice via inference.sh CLI. Capabilities: auto speaker detection, voice-preserving translation, video dubbing, audio localization. Use for: content localization, video translation, multilingual content, international distribution. Triggers: dubbing, dub video, translate audio, video translation, audio translation, localize content, elevenlabs dubbing, eleven labs dub, multilingual dub, voice translation, auto dub, language dub, content localization",
  "publisher": "inference-sh",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "general"
    ],
    "tags": [
      "skill-md",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "ElevenLabs automatic dubbing - translate and dub audio/video into 29 languages while preserving speaker voice via inference.sh CLI. Capabilities: auto speaker detection, voice-preserving translation, video dubbing, audio localization. Use for: content localization, video translation, multilingual content, international distribution. Triggers: dubbing, dub video, translate audio, video translation, audio translation, localize content, elevenlabs dubbing, eleven labs dub, multilingual dub, voice translation, auto dub, language dub, content localization"
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/inference-sh/skills",
      "path": "tools/audio/elevenlabs-dubbing/SKILL.md",
      "ref": "HEAD",
      "url": "https://www.skills.sh/inference-sh/skills/elevenlabs-dubbing",
      "key": "inference-sh/skills/tools/audio/elevenlabs-dubbing/SKILL.md"
    },
    "allowed_tools": [
      "Bash(belt",
      "*)"
    ]
  },
  "instructions": "> **Install the belt CLI skill:** `npx skills add belt-sh/cli`\n\n# ElevenLabs Dubbing\n\nAutomatically dub audio and video into 29 languages via [inference.sh](https://inference.sh) CLI.\n\n![Dubbing](https://cloud.inference.sh/u/4mg21r6ta37mpaz6ktzwtt8krr/01jz00krptarq4bwm89g539aea.png)\n\n## Quick Start\n\n> Requires inference.sh CLI (`belt`). [Install instructions](https://raw.githubusercontent.com/inference-sh/skills/refs/heads/main/cli-install.md)\n\n```bash\nbelt login\n\n# Dub English video to Spanish\nbelt app run elevenlabs/dubbing --input '{\n  \"audio\": \"https://video.mp4\",\n  \"target_lang\": \"es\"\n}'\n",
  "cost": {
    "context_tokens": 923
  }
}

Fetch it by URL: GET /api/v1/registry/inference-sh-skills-elevenlabs-dubbing/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.