SpeechAce teaches correct American English pronunciation and eliminates your accent one word at a time.
Go to siteThe 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.`,
},
})
},
})
Pronunciation Feedback System: When a user submits an audio recording through a form or chatbot, trigger a Pipedream workflow to send the audio to the Speechace API. Once processed, you can automatically send personalized pronunciation feedback to the user via email or messaging app integration like Slack.
Language Learning Dashboard: Compile and store pronunciation scores and fluency metrics in a Pipedream data store or an external database like Google Sheets whenever users complete speaking exercises. Use this aggregated data to create a dashboard that tracks progress and highlights areas for improvement.
Automated Language Assessment: Automate the process of language proficiency assessment by triggering a workflow that sends candidates' speech samples to the Speechace API during an online test. The results can then be used to grade the pronunciation part of the test, which can be sent to an LMS like Moodle or Canvas.
Scores a scripted recording based on fluency and pronunciation. See the documentation
Transcribes and scores a provided speech recording. See the documentation
Speechace uses API keys for authentication. When you connect your Speechace account, Pipedream securely stores the keys so you can easily authenticate to Speechace APIs in both code and no-code steps.