SpeechAce teaches correct American English pronunciation and eliminates your accent one word at a time.
Scores a scripted recording based on fluency and pronunciation. See the documentation
Transcribes and scores a provided speech recording. See the documentation
The Speechace API offers capabilities for detailed speech analysis, particularly useful for language learning applications. With this API, you can assess users' pronunciation and fluency in English by analyzing audio inputs. In Pipedream, you can leverage this API to craft workflows that trigger on various events, process audio data, and perform actions based on the analysis—such as storing results, providing feedback, or integrating with other services for enhanced functionality.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
speechace: {
type: "app",
app: "speechace",
}
},
async run({steps, $}) {
return await axios($, {
method: "post",
url: `https://api.speechace.co/api/validating/text/v9/json`,
params: {
key: `${this.speechace.$auth.product_key}`,
dialect: `en-us`,
text: `Welcome to the world of workflow automation.`,
},
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.