Make Music With AI Vocals. Epic synthetic singing and rapping vocals for creative agencies, musicians, and coders.
Go to siteThe Uberduck API offers text-to-speech capabilities with a variety of voice choices, from standard voices to celebrity impersonations. It enables you to convert text into lifelike speech, providing an API that can be used for creating audio content, voiceovers for videos, or for making interactive voice response systems more engaging. On Pipedream, you can build workflows that leverage this functionality, triggering voice synthesis with events from various sources and integrating with other apps for a seamless automation experience.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
uberduck: {
type: "app",
app: "uberduck",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.uberduck.ai/voices`,
auth: {
username: `${this.uberduck.$auth.api_key}`,
password: `${this.uberduck.$auth.secret_key}`,
},
})
},
})
Automatic Podcast Generation: Create a workflow where you convert blog posts or written content into audio format using the Uberduck API. Trigger the process with new RSS feed items, use Uberduck for conversion, and then upload the resulting audio to a podcast hosting platform like Anchor.
Dynamic Voice Notifications: Build a system that generates voice notifications for regular updates or alerts. For instance, use Uberduck to turn Slack messages or Trello card updates into speech, which can then be sent as a voice file attachment back into Slack or to another messaging service.
Interactive Voice Response (IVR) Enhancements: Improve your IVR system by using the Uberduck API to generate dynamic and engaging responses based on user input. Integrate with Twilio to handle incoming calls, use conditional logic to process the request, and employ Uberduck to create a custom-tailored audio response.
Generates lyrics using a specified voice model. See the documentation
Get voice samples for a specific voice model. See the documentation
Uberduck uses API keys for authentication. When you connect your Uberduck account, Pipedream securely stores the keys so you can easily authenticate to Uberduck APIs in both code and no-code steps.
To retrieve your API Key and Secret Key,