-
Notifications
You must be signed in to change notification settings - Fork 1
Enable Speech‐to‐Text transcription in units
Hiroki Terashima edited this page Oct 14, 2024
·
2 revisions
WISE can be configured to use the AWS transcribe service to perform speech-to-text transcription. This can be used to allow students to speak their response to Open Response activities.
Note: WISE needs to be served over HTTPS for STT to function.
- You'll need to sign up for AWS and set up the transcribe service on AWS, update the properties settings, and restart WISE. We wrote about which properties to update here - search for "speech-to-text"
- Once you restart WISE, open up a unit in the Authoring Tool, and open the "Advanced Settings" view. Click on the "Show JSON" button to view the unit's JSON. At the top-level of the JSON, type in this "speechToText" block:
"speechToText": {
"enabled": true,
"defaultLanguage": "en-US",
"supportedLanguages": [
"en-US",
"ja-JP",
"es-US"
]
},
Change the "defaultLanguage" and "supportedLanguages" values as you see fit. In this screenshot, English (US) is the default language, and the transcription will support languages spoken in English, Japanese, and Spanish.
(Note: we will make editing this setting easier in the future!)