Dub Automation API Released

We are excited to announce the release of the Murf Dub Automation API, enabling developers to automate high-quality dubbing workflows with ease. Key features include:

  • Multi-language Support: Create dubs in 28 languages with realistic voices.
  • Transient and Persistent Modes: Choose between temporary, lightweight dubs or project-based, editable dubs.
  • Bulk Processing: Upload and dub thousands of videos with rapid turnaround.
  • Enterprise-Grade Security: Strict data handling policies with options for ephemeral storage and controlled retention periods.

Learn more about the API in the Dub Automation API Overview.

8 New Languages Added to Murf API

Murf API now supports 8 additional languages, expanding its global reach and accessibility. The newly added languages are:

  • Turkish
  • Indonesian
  • Japanese
  • Croatian
  • Greek
  • Romanian
  • Slovak
  • Bulgarian

These languages come with high-quality voices and support for advanced features like MultiNative technology and voice customization. Explore the new voices in our Interactive Voice Selector or in our Voice Library.

Official Python SDK

Murf’s official python SDK is now available on PyPi. You can install it using pip:

$pip install murf

The SDK provides a simple interface to interact with Murf’s APIs. Here’s an example of how you can use the SDK to generate speech:

1from murf import Murf
2
3client = Murf(
4 api_key="YOUR_API_KEY" # Not required if you have set the MURF_API_KEY environment variable
5)
6
7res = client.text_to_speech.generate(
8 text="There is much to be said",
9 voice_id="en-US-terrell",
10)