|
@@ -3133,10 +3133,7 @@ ${JSON.stringify(_list)}
|
|
}
|
|
}
|
|
this.showGetTextLoading = true;
|
|
this.showGetTextLoading = true;
|
|
let privText = e.privText;
|
|
let privText = e.privText;
|
|
- let privSpeakerId = e.privSpeakerId;
|
|
|
|
- if (!privText || !privSpeakerId || privSpeakerId == "Unknown") {
|
|
|
|
- return;
|
|
|
|
- }
|
|
|
|
|
|
+ if (privText == undefined || privText == "undefined") return;
|
|
console.log("👇转译对象👇");
|
|
console.log("👇转译对象👇");
|
|
console.log(e);
|
|
console.log(e);
|
|
console.log("👇转译结果👇");
|
|
console.log("👇转译结果👇");
|
|
@@ -3156,7 +3153,7 @@ ${JSON.stringify(_list)}
|
|
};
|
|
};
|
|
this.recordedForm.textList.push(newItem);
|
|
this.recordedForm.textList.push(newItem);
|
|
this.recordedForm.startTime = this.recordedForm.timeDuration + 1;
|
|
this.recordedForm.startTime = this.recordedForm.timeDuration + 1;
|
|
- this.transcriptionData.content += privSpeakerId + ":" + privText +"\n";;
|
|
|
|
|
|
+ this.transcriptionData.content += privText;
|
|
this.onRecordAddLine(newItem);
|
|
this.onRecordAddLine(newItem);
|
|
};
|
|
};
|
|
},
|
|
},
|
|
@@ -3191,10 +3188,7 @@ ${JSON.stringify(_list)}
|
|
this.recordedForm.endTime = this.recordedForm.timeDuration;
|
|
this.recordedForm.endTime = this.recordedForm.timeDuration;
|
|
this.showGetTextLoading = true;
|
|
this.showGetTextLoading = true;
|
|
let privText = e.privText;
|
|
let privText = e.privText;
|
|
- let privSpeakerId = e.privSpeakerId;
|
|
|
|
- if (!privText || !privSpeakerId || privSpeakerId == "Unknown") {
|
|
|
|
- return;
|
|
|
|
- }
|
|
|
|
|
|
+ if (privText == undefined || privText == "undefined") return;
|
|
console.log("👇转译对象👇");
|
|
console.log("👇转译对象👇");
|
|
console.log(e);
|
|
console.log(e);
|
|
console.log("👇转译结果👇");
|
|
console.log("👇转译结果👇");
|
|
@@ -3214,7 +3208,7 @@ ${JSON.stringify(_list)}
|
|
};
|
|
};
|
|
this.recordedForm.textList.push(newItem);
|
|
this.recordedForm.textList.push(newItem);
|
|
this.recordedForm.startTime = this.recordedForm.timeDuration + 1;
|
|
this.recordedForm.startTime = this.recordedForm.timeDuration + 1;
|
|
- this.transcriptionData.content += privSpeakerId + ":" + privText +"\n";;
|
|
|
|
|
|
+ this.transcriptionData.content += privText;
|
|
this.onRecordAddLine(newItem);
|
|
this.onRecordAddLine(newItem);
|
|
};
|
|
};
|
|
},
|
|
},
|