bugfix: speech to text was ignoring language and setting to en-US always

This commit is contained in:
Dave Horton
2021-04-07 18:40:14 -04:00
parent e441c5be36
commit 8eb0cd1520
2 changed files with 2 additions and 2 deletions

View File

@@ -150,7 +150,7 @@ class TaskTranscribe extends Task {
await ep.startTranscription({
vendor: this.vendor,
interim: this.interim ? true : false,
language: this.language,
locale: this.language,
channels: this.separateRecognitionPerChannel ? 2 : 1
});
}