elevenlabs-voice-changer

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

ElevenLabs Voice Changer

ElevenLabs 语音变声器

Transform any voice into a different voice via inference.sh CLI.
Voice Changer
通过 inference.sh CLI 将任意语音转换为其他语音。
语音变声器

Quick Start

快速开始

Requires inference.sh CLI (
belt
). Install instructions
bash
belt login
需要安装 inference.sh CLI(
belt
)。安装说明
bash
belt login

Transform voice

转换语音

belt app run elevenlabs/voice-changer --input '{"audio": "https://recording.mp3", "voice": "aria"}'
undefined
belt app run elevenlabs/voice-changer --input '{"audio": "https://recording.mp3", "voice": "aria"}'
undefined

Available Models

可用模型

ModelIDBest For
Multilingual STS v2
eleven_multilingual_sts_v2
70+ languages (default)
English STS v2
eleven_english_sts_v2
English-optimized
模型ID适用场景
多语言STS v2
eleven_multilingual_sts_v2
支持70+种语言(默认)
英文优化STS v2
eleven_english_sts_v2
英文场景优化

Voice Options

语音选项

Same 22+ premium voices as ElevenLabs TTS:
VoiceStyle
george
British, authoritative (default)
aria
American, conversational
alice
British, confident
brian
American, conversational
charlie
Australian, natural
daniel
British, commanding
jessica
American, expressive
sarah
American, friendly
adam
,
bella
,
bill
,
callum
,
chris
,
eric
,
harry
,
laura
,
liam
,
lily
,
matilda
,
river
,
roger
,
will
Various styles
与ElevenLabs TTS相同的22+种优质语音:
语音风格
george
英式、权威感(默认)
aria
美式、口语化
alice
英式、自信
brian
美式、口语化
charlie
澳式、自然
daniel
英式、有号召力
jessica
美式、富有表现力
sarah
美式、友好
adam
,
bella
,
bill
,
callum
,
chris
,
eric
,
harry
,
laura
,
liam
,
lily
,
matilda
,
river
,
roger
,
will
多种风格

Examples

使用示例

Basic Voice Transformation

基础语音转换

bash
undefined
bash
undefined

Change voice to British male

转换为英式男性语音

belt app run elevenlabs/voice-changer --input '{ "audio": "https://my-recording.mp3", "voice": "george" }'
belt app run elevenlabs/voice-changer --input '{ "audio": "https://my-recording.mp3", "voice": "george" }'

Change voice to American female

转换为美式女性语音

belt app run elevenlabs/voice-changer --input '{ "audio": "https://my-recording.mp3", "voice": "aria" }'
undefined
belt app run elevenlabs/voice-changer --input '{ "audio": "https://my-recording.mp3", "voice": "aria" }'
undefined

Choose Output Format

选择输出格式

bash
belt app run elevenlabs/voice-changer --input '{
  "audio": "https://recording.mp3",
  "voice": "daniel",
  "output_format": "mp3_44100_192"
}'
bash
belt app run elevenlabs/voice-changer --input '{
  "audio": "https://recording.mp3",
  "voice": "daniel",
  "output_format": "mp3_44100_192"
}'

English-Optimized Model

英文优化模型

bash
belt app run elevenlabs/voice-changer --input '{
  "audio": "https://english-speech.mp3",
  "voice": "brian",
  "model": "eleven_english_sts_v2"
}'
bash
belt app run elevenlabs/voice-changer --input '{
  "audio": "https://english-speech.mp3",
  "voice": "brian",
  "model": "eleven_english_sts_v2"
}'

Workflow: Voice-Over Replacement

工作流:配音替换

bash
undefined
bash
undefined

1. Record yourself reading the script (any quality mic)

1. 录制自己朗读脚本(任意质量麦克风均可)

2. Transform to professional voice

2. 转换为专业语音

belt app run elevenlabs/voice-changer --input '{ "audio": "https://my-rough-recording.mp3", "voice": "george" }' > professional.json
belt app run elevenlabs/voice-changer --input '{ "audio": "https://my-rough-recording.mp3", "voice": "george" }' > professional.json

3. Add to video

3. 添加到视频中

belt app run infsh/media-merger --input '{ "media": ["video.mp4", "<professional-audio-url>"] }'
undefined
belt app run infsh/media-merger --input '{ "media": ["video.mp4", "<professional-audio-url>"] }'
undefined

Workflow: Character Voices

工作流:角色语音制作

bash
undefined
bash
undefined

Record one actor, create multiple characters

录制一位演员的声音,生成多个角色语音

Character 1: British narrator

角色1:英式旁白

belt app run elevenlabs/voice-changer --input '{ "audio": "https://actor-line1.mp3", "voice": "george" }' > char1.json
belt app run elevenlabs/voice-changer --input '{ "audio": "https://actor-line1.mp3", "voice": "george" }' > char1.json

Character 2: Young female

角色2:年轻女性

belt app run elevenlabs/voice-changer --input '{ "audio": "https://actor-line2.mp3", "voice": "lily" }' > char2.json
belt app run elevenlabs/voice-changer --input '{ "audio": "https://actor-line2.mp3", "voice": "lily" }' > char2.json

Character 3: Casual male

角色3:随性男性

belt app run elevenlabs/voice-changer --input '{ "audio": "https://actor-line3.mp3", "voice": "charlie" }' > char3.json
undefined
belt app run elevenlabs/voice-changer --input '{ "audio": "https://actor-line3.mp3", "voice": "charlie" }' > char3.json
undefined

Use Cases

适用场景

  • Content Creation: Transform your voice for videos and podcasts
  • Voice Acting: Create multiple characters from one performance
  • Privacy: Anonymize voice in recordings
  • Dubbing: Replace voices in video content
  • Accessibility: Convert to preferred voice characteristics
  • Prototyping: Test different voices before hiring talent
  • 内容创作:为视频和播客转换语音
  • 配音表演:一次表演生成多个角色语音
  • 隐私保护:匿名化录音中的语音
  • 配音制作:替换视频内容中的语音
  • 无障碍适配:转换为偏好的语音特征
  • 原型制作:在聘请专业人才前测试不同语音

Related Skills

相关技能

bash
undefined
bash
undefined

ElevenLabs TTS (generate from text instead)

ElevenLabs TTS(从文本生成语音)

npx skills add inference-sh/skills@elevenlabs-tts
npx skills add inference-sh/skills@elevenlabs-tts

ElevenLabs voice isolator (clean audio first)

ElevenLabs 语音隔离器(先清理音频)

npx skills add inference-sh/skills@elevenlabs-voice-isolator
npx skills add inference-sh/skills@elevenlabs-voice-isolator

ElevenLabs dubbing (translate to other languages)

ElevenLabs 配音工具(翻译为其他语言)

npx skills add inference-sh/skills@elevenlabs-dubbing
npx skills add inference-sh/skills@elevenlabs-dubbing

Full platform skill (all 250+ apps)

全平台技能(包含250+应用)

npx skills add inference-sh/skills@infsh-cli

Browse all audio apps: `belt app list --category audio`
npx skills add inference-sh/skills@infsh-cli

浏览所有音频应用:`belt app list --category audio`