Dubbing quickstart

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

This guide will show you how to dub an audio file across languages. In this example we’ll dub an audio file from English to Spanish.

Using the Dubbing 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 import play
6import requests
7from io import BytesIO
8import time
9
10load_dotenv()
11
12client = ElevenLabs(
13 api_key=os.getenv("ELEVENLABS_API_KEY"),
14)
15
16target_lang = "es" # Spanish
17
18audio_url = (
19 "https://storage.googleapis.com/eleven-public-cdn/audio/marketing/nicole.mp3"
20)
21response = requests.get(audio_url)
22
23audio_data = BytesIO(response.content)
24audio_data.name = "audio.mp3"
25
26# Start dubbing
27dubbed = client.dubbing.dub_a_video_or_an_audio_file(
28 file=audio_data, target_lang=target_lang
29)
30
31while True:
32 status = client.dubbing.get_dubbing_project_metadata(dubbed.dubbing_id).status
33 if status == "dubbed":
34 dubbed_file = client.dubbing.get_dubbed_file(dubbed.dubbing_id, target_lang)
35 play(dubbed_file)
36 break
37 else:
38 print("Audio is still being dubbed...")
39 time.sleep(5)
4

Execute the code

1python example.py

You should hear the dubbed audio file playing through your speakers.

Next steps

Explore the API reference for more information on the Dubbing API and its options.