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 instructionsinfsh
bash
infsh login需要安装 inference.sh CLI()。安装说明infsh
bash
infsh loginTransform voice
Transform voice
infsh app run elevenlabs/voice-changer --input '{"audio": "https://recording.mp3", "voice": "aria"}'
undefinedinfsh 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
Change voice to British male
infsh app run elevenlabs/voice-changer --input '{
"audio": "https://my-recording.mp3",
"voice": "george"
}'
infsh app run elevenlabs/voice-changer --input '{
"audio": "https://my-recording.mp3",
"voice": "george"
}'
Change voice to American female
Change voice to American female
infsh app run elevenlabs/voice-changer --input '{
"audio": "https://my-recording.mp3",
"voice": "aria"
}'
undefinedinfsh app run elevenlabs/voice-changer --input '{
"audio": "https://my-recording.mp3",
"voice": "aria"
}'
undefinedChoose Output Format
选择输出格式
bash
infsh app run elevenlabs/voice-changer --input '{
"audio": "https://recording.mp3",
"voice": "daniel",
"output_format": "mp3_44100_192"
}'bash
infsh app run elevenlabs/voice-changer --input '{
"audio": "https://recording.mp3",
"voice": "daniel",
"output_format": "mp3_44100_192"
}'English-Optimized Model
英文优化模型
bash
infsh app run elevenlabs/voice-changer --input '{
"audio": "https://english-speech.mp3",
"voice": "brian",
"model": "eleven_english_sts_v2"
}'bash
infsh 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. Record yourself reading the script (any quality mic)
2. Transform to professional voice
2. Transform to professional voice
infsh app run elevenlabs/voice-changer --input '{
"audio": "https://my-rough-recording.mp3",
"voice": "george"
}' > professional.json
infsh app run elevenlabs/voice-changer --input '{
"audio": "https://my-rough-recording.mp3",
"voice": "george"
}' > professional.json
3. Add to video
3. Add to video
infsh app run infsh/media-merger --input '{
"media": ["video.mp4", "<professional-audio-url>"]
}'
undefinedinfsh app run infsh/media-merger --input '{
"media": ["video.mp4", "<professional-audio-url>"]
}'
undefinedWorkflow: Character Voices
工作流:角色音色生成
bash
undefinedbash
undefinedRecord one actor, create multiple characters
Record one actor, create multiple characters
Character 1: British narrator
Character 1: British narrator
infsh app run elevenlabs/voice-changer --input '{
"audio": "https://actor-line1.mp3",
"voice": "george"
}' > char1.json
infsh app run elevenlabs/voice-changer --input '{
"audio": "https://actor-line1.mp3",
"voice": "george"
}' > char1.json
Character 2: Young female
Character 2: Young female
infsh app run elevenlabs/voice-changer --input '{
"audio": "https://actor-line2.mp3",
"voice": "lily"
}' > char2.json
infsh app run elevenlabs/voice-changer --input '{
"audio": "https://actor-line2.mp3",
"voice": "lily"
}' > char2.json
Character 3: Casual male
Character 3: Casual male
infsh app run elevenlabs/voice-changer --input '{
"audio": "https://actor-line3.mp3",
"voice": "charlie"
}' > char3.json
undefinedinfsh 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 (generate from text instead)
npx skills add inference-sh/skills@elevenlabs-tts
npx skills add inference-sh/skills@elevenlabs-tts
ElevenLabs voice isolator (clean audio first)
ElevenLabs voice isolator (clean audio first)
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 dubbing (translate to other languages)
npx skills add inference-sh/skills@elevenlabs-dubbing
npx skills add inference-sh/skills@elevenlabs-dubbing
Full platform skill (all 250+ apps)
Full platform skill (all 250+ apps)
npx skills add inference-sh/skills@infsh-cli
Browse all audio apps: `infsh app list --category audio`npx skills add inference-sh/skills@infsh-cli
浏览所有音频应用:`infsh app list --category audio`