Trint’s speech-to-text platform makes audio and video searchable, editable and shareable.
Go to siteThe Trint API allows you to harness the power of automated transcription and translation. With Trint, you can convert audio and video files into searchable, editable text. It supports multiple languages and provides features like speaker identification and timestamping. Using the Trint API within Pipedream, you can create automated workflows that process media files, extract valuable insights, and integrate transcribed content into databases, content management systems, or other third-party services.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
trint: {
type: "app",
app: "trint",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.trint.com/transcripts`,
headers: {
"Accept": `application/json`,
"api-key": `${this.trint.$auth.api_key}`,
},
params: {
limit: `{your_limit}`,
skip: `{your_skip}`,
},
})
},
})
Automated Podcast Transcription: Set up a workflow where each new podcast episode uploaded to a cloud storage (like Dropbox or Google Drive) triggers a Pipedream event, which then sends the file to Trint for transcription. Once transcribed, the text can be automatically formatted and published on your blog or website.
Video Content Analysis and Archiving: Whenever a new video is added to a CMS, Pipedream can catch this event, send the video to Trint for transcription and translation, and then store the results in a database. This can be linked with AI services to analyze sentiment or extract topics, enriching your video archive with searchable metadata.
Multilingual Support for Customer Service Calls: Record customer service calls and use Pipedream to send these recordings to Trint for transcription and translation. Integrate this with a CRM system to append transcripts to customer profiles, aiding in support and ensuring clear communication across different languages.
Trint uses API keys for authentication. When you connect your Trint account, Pipedream securely stores the keys so you can easily authenticate to Trint APIs in both code and no-code steps.
To retrieve your API Key,