|
@@ -1134,11 +1134,14 @@ export default {
|
|
|
uploadWavFileAndGetText(audioFile) {
|
|
|
let iiframe = this.$refs["iiframe"];
|
|
|
let _this = this;
|
|
|
+ iiframe.contentWindow.window.document.getElementById('languageOptions').selectedIndex = 3;
|
|
|
+ _this.transcriptionData.content = ''
|
|
|
iiframe.contentWindow.onRecognizedResult = function (e) {
|
|
|
console.log("onRecognizedResult", e);
|
|
|
let privText = e.privText;
|
|
|
console.log(privText)
|
|
|
- _this.transcriptionData.content = privText;
|
|
|
+ _this.transcriptionData.content += privText;
|
|
|
+ _this.loading = false;
|
|
|
};
|
|
|
iiframe.contentWindow.doContinuousPronunciationAssessment("", {
|
|
|
files: [audioFile],
|