elevenlabs-voice-isolator
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseElevenLabs Voice Isolator
ElevenLabs Voice Isolator
Remove background noise and isolate voices from audio via inference.sh CLI.

通过inference.sh CLI去除音频中的背景噪音并分离人声。

Quick Start
快速开始
Requires inference.sh CLI (). Install instructionsinfsh
bash
infsh login需要安装inference.sh CLI()。安装说明infsh
bash
infsh loginIsolate voice from noisy audio
从嘈杂音频中分离人声
infsh app run elevenlabs/voice-isolator --input '{"audio": "https://noisy-recording.mp3"}'
undefinedinfsh app run elevenlabs/voice-isolator --input '{"audio": "https://noisy-recording.mp3"}'
undefinedSupported Formats
支持的格式
| Format | Max Size | Max Duration |
|---|---|---|
| WAV | 500MB | 1 hour |
| MP3 | 500MB | 1 hour |
| FLAC | 500MB | 1 hour |
| OGG | 500MB | 1 hour |
| AAC | 500MB | 1 hour |
| 格式 | 最大文件大小 | 最长时长 |
|---|---|---|
| WAV | 500MB | 1小时 |
| MP3 | 500MB | 1小时 |
| FLAC | 500MB | 1小时 |
| OGG | 500MB | 1小时 |
| AAC | 500MB | 1小时 |
Examples
示例
Clean Up a Recording
净化录音
bash
undefinedbash
undefinedRemove background noise from a podcast recording
去除播客录音中的背景噪音
infsh app run elevenlabs/voice-isolator --input '{"audio": "https://noisy-podcast.mp3"}'
undefinedinfsh app run elevenlabs/voice-isolator --input '{"audio": "https://noisy-podcast.mp3"}'
undefinedClean Interview Audio
净化采访音频
bash
undefinedbash
undefinedIsolate speaker from café background noise
从咖啡馆背景噪音中分离说话人声音
infsh app run elevenlabs/voice-isolator --input '{"audio": "https://cafe-interview.mp3"}'
undefinedinfsh app run elevenlabs/voice-isolator --input '{"audio": "https://cafe-interview.mp3"}'
undefinedExtract Vocals from Music
从音乐中提取人声
bash
undefinedbash
undefinedSeparate vocals from instrumental
将人声与伴奏分离
infsh app run elevenlabs/voice-isolator --input '{"audio": "https://song.mp3"}'
undefinedinfsh app run elevenlabs/voice-isolator --input '{"audio": "https://song.mp3"}'
undefinedWhat It Removes
可移除的内容
- Ambient/environmental noise
- Background music
- Reverb and echo
- Wind noise
- Traffic and crowd noise
- Electrical hum/buzz
- Other non-voice sounds
- 环境噪音
- 背景音乐
- 混响与回声
- 风声
- 交通与人群噪音
- 电气嗡鸣
- 其他人声外的声音
Workflow: Clean → Transcribe
工作流:净化 → 转录
bash
undefinedbash
undefined1. Isolate voice from noisy recording
1. 从嘈杂录音中分离人声
infsh app run elevenlabs/voice-isolator --input '{
"audio": "https://noisy-meeting.mp3"
}' > cleaned.json
infsh app run elevenlabs/voice-isolator --input '{
"audio": "https://noisy-meeting.mp3"
}' > cleaned.json
2. Transcribe the clean audio
2. 转录净化后的音频
infsh app run elevenlabs/stt --input '{
"audio": "<cleaned-audio-url>",
"diarize": true
}'
undefinedinfsh app run elevenlabs/stt --input '{
"audio": "<cleaned-audio-url>",
"diarize": true
}'
undefinedWorkflow: Clean → Voice Change
工作流:净化 → 变声
bash
undefinedbash
undefined1. Clean up the audio
1. 净化音频
infsh app run elevenlabs/voice-isolator --input '{
"audio": "https://raw-recording.mp3"
}' > cleaned.json
infsh app run elevenlabs/voice-isolator --input '{
"audio": "https://raw-recording.mp3"
}' > cleaned.json
2. Transform the voice
2. 转换声音
infsh app run elevenlabs/voice-changer --input '{
"audio": "<cleaned-audio-url>",
"voice": "george"
}'
undefinedinfsh app run elevenlabs/voice-changer --input '{
"audio": "<cleaned-audio-url>",
"voice": "george"
}'
undefinedWorkflow: Clean → Add to Video
工作流:净化 → 添加到视频
bash
undefinedbash
undefined1. Clean the voiceover
1. 净化旁白音频
infsh app run elevenlabs/voice-isolator --input '{
"audio": "https://raw-voiceover.mp3"
}' > cleaned.json
infsh app run elevenlabs/voice-isolator --input '{
"audio": "https://raw-voiceover.mp3"
}' > cleaned.json
2. Merge with video
2. 与视频合并
infsh app run infsh/media-merger --input '{
"media": ["video.mp4", "<cleaned-audio-url>"]
}'
undefinedinfsh app run infsh/media-merger --input '{
"media": ["video.mp4", "<cleaned-audio-url>"]
}'
undefinedUse Cases
适用场景
- Podcasts: Clean up recordings with background noise
- Interviews: Remove café/office ambient sounds
- Music: Extract vocals for remixes or karaoke
- Video Production: Clean dialogue audio
- Archival: Restore old or degraded recordings
- Meetings: Improve recording clarity
- Voice Cloning Prep: Clean source audio for better cloning results
- 播客:净化带有背景噪音的录音
- 采访:去除咖啡馆/办公室的环境音
- 音乐:提取人声用于混音或卡拉OK
- 视频制作:净化对话音频
- 档案修复:修复老旧或受损的录音
- 会议:提升录音清晰度
- 语音克隆准备:净化源音频以获得更好的克隆效果
Related Skills
相关技能
bash
undefinedbash
undefinedElevenLabs voice changer (transform voice after cleaning)
ElevenLabs 变声工具(净化后转换声音)
npx skills add inference-sh/skills@elevenlabs-voice-changer
npx skills add inference-sh/skills@elevenlabs-voice-changer
ElevenLabs STT (transcribe clean audio)
ElevenLabs 语音转文字(转录净化后的音频)
npx skills add inference-sh/skills@elevenlabs-stt
npx skills add inference-sh/skills@elevenlabs-stt
ElevenLabs TTS (generate clean speech from text)
ElevenLabs 文字转语音(从文本生成清晰语音)
npx skills add inference-sh/skills@elevenlabs-tts
npx skills add inference-sh/skills@elevenlabs-tts
Full platform skill (all 250+ apps)
全平台技能(包含250+应用)
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`