Trigger workflows on new emails, and send emails to yourself as part of a Pipedream workflow.
Get a unique address where you can send emails to trigger your workflow.
Generates lyrics using a specified voice model. See the documentation
Customize and send an email to the email address you registered with Pipedream. The email will be sent by notifications@pipedream.com.
Get voice samples for a specific voice model. See the documentation
export default defineComponent({
async run({ $ }) {
const options = {
subject: 'Your subject here',
text: 'Your text here'
};
$.send.email(options);
},
});
The 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}`,
},
})
},
})