|
@@ -340,6 +340,9 @@ export default {
|
|
|
iiframe.contentWindow.onRecognizedResult = result =>{
|
|
|
this.$refs.videoTextTextarea.scrollTop = this.$refs.videoTextTextarea.scrollHeight;
|
|
|
this.videoText = this.videoText.replace(/(^|[\r\n]+).*?\[\.\.\.\][\r\n]+$/, '$1');
|
|
|
+ if (result.text) {
|
|
|
+ this.videoText += `${result.text}\r\n`;
|
|
|
+ }
|
|
|
}
|
|
|
},
|
|
|
async onPauseRecordWithMicrosoft() {
|
|
@@ -575,6 +578,9 @@ export default {
|
|
|
iiframe.contentWindow.onRecognizedResult = result =>{
|
|
|
this.$refs.videoTextTextarea.scrollTop = this.$refs.videoTextTextarea.scrollHeight;
|
|
|
this.videoText = this.videoText.replace(/(^|[\r\n]+).*?\[\.\.\.\][\r\n]+$/, '$1');
|
|
|
+ if (result.text) {
|
|
|
+ this.videoText += `${result.text}\r\n`;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|