For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Connect
BlogHelp CenterAPI PricingSign up
OverviewElevenCreativeElevenAgentsElevenAPIReception AIAPI referenceChangelog
OverviewElevenCreativeElevenAgentsElevenAPIReception AIAPI referenceChangelog
  • Get started
    • Quickstart
    • Agents Quickstart
    • Choosing the right model
  • Tutorials
    • Text to Speech
    • Speech to Text
    • Speech Engine
    • Music
    • Text to Dialogue
    • Voice Changer
    • Voice Isolator
    • Dubbing
    • Sound effects
    • Forced Alignment
  • Concepts
    • Understanding audio streaming
    • Understanding latency
    • Voice cloning
  • How-to guides
  • Reference
    • Libraries & SDKs
    • Errors
    • Agent tooling
    • Webhooks
    • Zero Retention Mode
    • Breaking changes policy
    • UI components
    • Example projects
    • Next.js template
    • Showcase
  • Private deployment
    • Overview
LogoLogo
Login
Login
Connect
BlogHelp CenterAPI PricingSign up
On this page
  • Using the Voice Isolator API
  • Next steps
Tutorials

Voice Isolator quickstart

Learn how to remove background noise from an audio file using the Voice Isolator API.
Was this page helpful?
Previous

Dubbing quickstart

Learn how to dub audio and video files across languages using the Dubbing API.
Next
Built with

This guide will show you how to remove background noise from an audio file using the Voice Isolator API.

Use the ElevenLabs voice-isolator skill to remove background noise from audio files from your AI coding assistant:

$npx skills add elevenlabs/skills --skill voice-isolator

Using the Voice Isolator API

1

Create an API key

Create an API key in the dashboard here, which you’ll use to securely access the API.

Store the key as a managed secret and pass it to the SDKs either as a environment variable via an .env file, or directly in your app’s configuration depending on your preference.

.env
1ELEVENLABS_API_KEY=<your_api_key_here>
2

Install the SDK

We’ll also use the dotenv library to load our API key from an environment variable.

1pip install elevenlabs
2pip install python-dotenv

To play the audio through your speakers, you may be prompted to install MPV and/or ffmpeg.

3

Make the API request

Create a new file named example.py or example.mts, depending on your language of choice and add the following code:

1# example.py
2import os
3from dotenv import load_dotenv
4from elevenlabs.client import ElevenLabs
5from elevenlabs.play import play
6import requests
7from io import BytesIO
8
9load_dotenv()
10
11elevenlabs = ElevenLabs(
12 api_key=os.getenv("ELEVENLABS_API_KEY"),
13)
14
15audio_url = "https://storage.googleapis.com/eleven-public-cdn/documentation_assets/audio/voice_with_background.mp3"
16response = requests.get(audio_url)
17audio_data = BytesIO(response.content)
18
19audio_stream = elevenlabs.audio_isolation.convert(audio=audio_data)
20
21play(audio_stream)
4

Execute the code

1python example.py

You should hear the isolated voice playing through your speakers.

Next steps

Voice Changer

Transform the voice in an audio file to a different voice

Speech to Text

Transcribe the isolated voice to text with the Speech to Text API

API reference

Explore all Voice Isolator parameters and response formats