Order Dubbing
To order dubbing, you'll determine the language IDs of the source and target language(s) for your dub and call the Order a Dub endpoint.
Determine language IDs
You can get a full listing of languages by hitting the List all Languages endpoint.
Order Dubbing
Now, order dubbing by hitting the Order a Dub endpoint, supplying your media, the source_language_id
, target_language_id
and any other configuration options.
The object that is returned is a standard Dubbing object (same that is returned from the Get a Dub endpoint).
Getting Dubbing Status
To get the current status of your dub, call the Get a Dub endpoint and inspect the status
field. When your dub is complete, the status field will be complete
.
For Production applications, polling endpoints for status is an anti-pattern, so you'll want to specify a callback
URL in the Order a Dub endpoint. Whenever the dubs's status changes, we'll ping the callback URL.
Downloading your Dubbed Media
Once your dub is complete (status
= complete
), you can download your dubbed media (mixed video, audio track, etc... via the Download Dubbing Assets endpoint. There are many formats you can choose from. They're listed on the Download Dubbing Assets page.
Updated about 2 months ago