The IBM Cloud - Speech to Text API transforms spoken language into written text, offering a powerful tool for creating transcriptions, enabling voice control and command features, and feeding speech into analytics platforms. With Pipedream, you can build automated workflows that leverage this capability, such as transcribing meetings in real-time, analyzing customer service calls for sentiment and keywords, or even creating subtitles for videos. The ability to connect with other apps on Pipedream allows for complex workflows that can turn spoken data into actionable insights or accessible content.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
ibm_cloud_speech_to_text: {
type: "app",
app: "ibm_cloud_speech_to_text",
}
},
async run({steps, $}) {
const data = {
"text": `hello world`,
}
return await axios($, {
method: "post",
url: `${this.ibm_cloud_speech_to_text.$auth.instance_url}/v1/synthesize`,
headers: {
"Content-Type": `application/json`,
"Accept": `audio/wav`,
},
auth: {
username: `apikey`,
password: `${this.ibm_cloud_speech_to_text.$auth.api_key}`,
},
data,
})
},
})
Customer Support Call Analysis: Use IBM Cloud - Speech to Text to transcribe customer support calls. Feed the transcriptions into a sentiment analysis API, like the one offered by Google Cloud Natural Language, to gauge customer satisfaction and identify pain points in your service.
Meeting Minutes Automation: Directly transcribe online meeting audio using IBM Cloud - Speech to Text, then use the Pipedream platform to filter, format, and send the text to a document storage app like Google Docs, automatically creating shareable meeting minutes.
Content Creation for Accessibility: Transcribe podcast episodes or YouTube video speech to create written content. With IBM Cloud - Speech to Text via Pipedream, automatically post the transcriptions to your website or content management system (CMS), improving SEO and making the content accessible to a wider audience, including those with hearing impairments.
IBM Cloud - Speech to Text uses API keys for authentication. When you connect your IBM Cloud - Speech to Text account, Pipedream securely stores the keys so you can easily authenticate to IBM Cloud - Speech to Text APIs in both code and no-code steps.