Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation.
Emit new event when a new version of an npm package is published. See the documentation
Converts text to audio using the Aivoov API. See the documentation
AiVOOV API offers speech recognition capabilities that enable you to convert audio into text, supporting various languages. This can be particularly useful for transcription services, content generation, and multilingual support systems. On Pipedream, you can leverage this API to create powerful serverless workflows that trigger upon receiving audio data, automatically transcribing it and connecting the output to countless other services for processing, analysis, or storage.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
aivoov: {
type: "app",
app: "aivoov",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://aivoov.com/api/v1/voices?provider=aws`,
headers: {
"X-API-KEY": `${this.aivoov.$auth.api_key}`,
},
})
},
})