Rev.ai offers speech recognition and transcription capabilities, making it possible to convert audio into text with high accuracy. This API provides developers access to advanced speech-to-text functions, allowing you to transcribe interviews, meetings, or any audio content quickly. Using Pipedream, these transcriptions can be integrated into workflows that trigger actions in other apps, enriching your data and automating repetitive tasks.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
rev_ai: {
type: "app",
app: "rev_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.rev.ai/speechtotext/v1/account`,
headers: {
Authorization: `Bearer ${this.rev_ai.$auth.access_token}`,
},
})
},
})
Automated Meeting Transcriptions to Task Manager: Whenever a new audio file is uploaded to a cloud storage service like Dropbox, Pipedream triggers a workflow that sends the file to Rev.ai for transcription. The resulting text can be parsed to identify action items and then automatically added as tasks to a project management tool such as Asana, ensuring that no to-do item is missed from verbal meetings.
Customer Support Call Analysis: After a support call is recorded, the audio can be sent to Rev.ai via Pipedream. Once transcribed, the text is analyzed for sentiment and keywords using Pipedream's built-in code steps or an AI service like MonkeyLearn. This analysis can then be logged in a CRM like Salesforce or sent as a summary report to a Slack channel, giving insights into customer satisfaction and agent performance.
Content Creation from Podcasts: Using a Pipedream workflow, podcast episodes uploaded to an RSS feed can be automatically transcribed by Rev.ai. The transcriptions can then be formatted and published as blog posts to platforms like WordPress or Medium. Additionally, key phrases and topics from the transcript can be extracted to generate tags and SEO-friendly metadata to enhance discoverability.
Returns the transcript for a completed transcription job. Transcript can be returned as either JSON or plaintext format.
Starts an asynchronous job to transcribe speech-to-text for a media file. Add an optional callback URL to invoke when processing is complete.
Rev.ai uses API keys for authentication. When you connect your Rev.ai account, Pipedream securely stores the keys so you can easily authenticate to Rev.ai APIs in both code and no-code steps.
Get your access token at https://www.rev.ai/access_token