Access powerful AI models to transcribe and understand speech via a simple API.
Emit new event when a transcribed audio file from AssemblyAI is ready. See the documentation
Export your completed transcripts in SRT (srt) or VTT (vtt) format, which can be used for subtitles and closed captions in videos. See the documentation
Create a HTML or a plain text email template. See the docs
Fetches a specific transcribed result from the AssemblyAI API. See the documentation
Send an email using Amazon SES. Supports simple email messaging. See the docs
The AssemblyAI API provides powerful speech recognition and natural language processing capabilities. It allows users to transcribe audio, analyze sentiment, detect topics, and more. In Pipedream, you can leverage these features to create automated workflows that process audio and text data. Connect AssemblyAI to various apps and services, trigger actions based on the API's output, and build robust, serverless data pipelines.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
assemblyai: {
type: "app",
app: "assemblyai",
}
},
async run({steps, $}) {
const data = {
"audio_url": `{{your_audio_url}}`,
//for testing, try: https://storage.googleapis.com/aai-web-samples/espn-bears.m4a
}
return await axios($, {
method: "POST",
url: `https://api.assemblyai.com/v2/transcript`,
headers: {
"authorization": `${this.assemblyai.$auth.api_key}`,
},
data,
})
},
})
Amazon Simple Email Service (SES) is a powerful cloud-based email sending service designed to help digital marketers and application developers send marketing, notification, and transactional emails. With the SES API, you can reliably send emails at scale, manage sender reputations, view email sending statistics, and maintain a high deliverability rate. Leveraging Pipedream's capabilities, you can integrate SES seamlessly into serverless workflows, automate email responses based on triggers from other apps, and analyze the effectiveness of your email campaigns by connecting to data analytics platforms.
module.exports = defineComponent({
props: {
amazon_ses: {
type: "app",
app: "amazon_ses",
}
},
async run({steps, $}) {
const AWS = require("aws-sdk")
const { accessKeyId, secretAccessKey } = this.amazon_ses.$auth
const ses = new AWS.SES({
accessKeyId,
secretAccessKey,
region: 'us-east-1',
})
const sesParams = {
Destination: {
ToAddresses: ["<your email here>"],
},
Message: {
Body: {
Html: {
Charset: "UTF-8",
Data: "<h1>This is a test</h1>",
},
Text: {
Charset: "UTF-8",
Data: "This is a test",
}
},
Subject: {
Charset: "UTF-8",
Data: "Test email",
}
},
Source: "<your from address here",
};
this.resp = await ses.sendEmail(sesParams).promise()
},
})