elevenlabs-voice-changer
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseElevenLabs Voice Changer
ElevenLabs 语音变声器
Transform any voice into a different voice via inference.sh CLI.

通过 inference.sh CLI 将任意语音转换为其他语音。

Quick Start
快速开始
Requires inference.sh CLI (). Install instructionsbelt
bash
belt login需要安装 inference.sh CLI()。安装说明belt
bash
belt loginTransform voice
转换语音
belt app run elevenlabs/voice-changer --input '{"audio": "https://recording.mp3", "voice": "aria"}'
undefinedbelt app run elevenlabs/voice-changer --input '{"audio": "https://recording.mp3", "voice": "aria"}'
undefinedAvailable Models
可用模型
| Model | ID | Best For |
|---|---|---|
| Multilingual STS v2 | | 70+ languages (default) |
| English STS v2 | | English-optimized |
| 模型 | ID | 适用场景 |
|---|---|---|
| 多语言STS v2 | | 支持70+种语言(默认) |
| 英文优化STS v2 | | 英文场景优化 |
Voice Options
语音选项
Same 22+ premium voices as ElevenLabs TTS:
| Voice | Style |
|---|---|
| British, authoritative (default) |
| American, conversational |
| British, confident |
| American, conversational |
| Australian, natural |
| British, commanding |
| American, expressive |
| American, friendly |
| Various styles |
与ElevenLabs TTS相同的22+种优质语音:
| 语音 | 风格 |
|---|---|
| 英式、权威感(默认) |
| 美式、口语化 |
| 英式、自信 |
| 美式、口语化 |
| 澳式、自然 |
| 英式、有号召力 |
| 美式、富有表现力 |
| 美式、友好 |
| 多种风格 |
Examples
使用示例
Basic Voice Transformation
基础语音转换
bash
undefinedbash
undefinedChange 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"
}'
undefinedbelt app run elevenlabs/voice-changer --input '{
"audio": "https://my-recording.mp3",
"voice": "aria"
}'
undefinedChoose 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
undefinedbash
undefined1. 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>"]
}'
undefinedbelt app run infsh/media-merger --input '{
"media": ["video.mp4", "<professional-audio-url>"]
}'
undefinedWorkflow: Character Voices
工作流:角色语音制作
bash
undefinedbash
undefinedRecord 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
undefinedbelt app run elevenlabs/voice-changer --input '{
"audio": "https://actor-line3.mp3",
"voice": "charlie"
}' > char3.json
undefinedUse 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
undefinedbash
undefinedElevenLabs 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`