elevenlabs-dubbing — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited elevenlabs-dubbing (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Install the belt CLI skill: npx skills add belt-sh/cliAutomatically dub audio and video into 29 languages via inference.sh CLI.

Requires inference.sh CLI (belt). Install instructionsbelt login
# Dub English video to Spanish
belt app run elevenlabs/dubbing --input '{
"audio": "https://video.mp4",
"target_lang": "es"
}'| 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 |
belt app run elevenlabs/dubbing --input '{
"audio": "https://english-video.mp4",
"target_lang": "es"
}'belt app run elevenlabs/dubbing --input '{
"audio": "https://podcast-episode.mp3",
"target_lang": "fr"
}'# Skip auto-detection, specify source
belt app run elevenlabs/dubbing --input '{
"audio": "https://german-video.mp4",
"source_lang": "de",
"target_lang": "en"
}'# 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# 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>"
}'# 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 250+ apps)
npx skills add inference-sh/skills@infsh-cliBrowse all audio apps: belt app store --category audio
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.