Affordable, accurate, easy-to-use speech-to-text solutions powered by people and A.I working together. Rev offers transcripts, captions, subtitles, and more.
Go to siteThe Rev API offers transcription, caption, and translation services, which you can integrate into automated workflows on Pipedream. Imagine automatically transcribing recorded meetings, generating captions for user-generated video content, or translating documents on-the-fly. With Rev, you can streamline media production, enhance accessibility, and break down language barriers, all while maintaining high accuracy.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
rev: {
type: "app",
app: "rev",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.rev.com/api/v1/orders`,
headers: {
"Authorization": `Rev ${this.rev.$auth.client_api_key}:${this.rev.$auth.user_api_key}`,
},
})
},
})
Automated Podcast Transcription: When a new podcast episode is uploaded to a hosting platform like SoundCloud, trigger a Pipedream workflow to send the audio file to Rev for transcription. Once the transcript is ready, it can be automatically posted to your website or blog, and even emailed to subscribers for enhanced engagement.
Video Content Captioning: For a YouTube channel, use Pipedream to watch for new video uploads. Upon detection, send the video to Rev for captioning. After the captions are completed, they can be automatically uploaded back to the YouTube video, ensuring your content is accessible to a wider audience, including those with hearing impairments.
Multilingual Document Translation for Customer Support: Whenever a non-English support ticket is received via a platform like Zendesk, a Pipedream workflow sends the text to Rev for translation. The translated text is then routed back into the customer support flow, enabling representatives to understand and respond effectively, streamlining support for a global user base.
Submit a new automated transcription order using a external link that contains the media. See docs here.
Submit a new caption order using a external link that contains the media. See docs here.
Submit a new transcription order using a external link that contains the media. See docs here.
Rev uses API keys for authentication. When you connect your Rev account, Pipedream securely stores the keys so you can easily authenticate to Rev APIs in both code and no-code steps.
The get your API Keys, check Step 1 in Rev API Quickguide and have them sent to your email by clicking in the "get them here" link.