|
@@ -149,6 +149,29 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
+ <!-- <div class="ca-b-o-h-l-btn">
|
|
|
+ <div class="ca-b-o-h-b-l-text" @click.stop="showTeacherVoiceprintBox = !showTeacherVoiceprintBox">{{choseTeacherVoiceprint?choseTeacherVoiceprint.name+'的':'教师'}}声纹</div>
|
|
|
+ <div class="ca_teacherVoiceprintBox" style="cursor: default;" v-click-outside="()=>showTeacherVoiceprintBox = !showTeacherVoiceprintBox" v-if="showTeacherVoiceprintBox">
|
|
|
+ <div class="ca_tvb_itemHead" @click.stop="test()">
|
|
|
+ <svg
|
|
|
+ width="12"
|
|
|
+ height="12"
|
|
|
+ viewBox="0 0 12 12"
|
|
|
+ fill="none"
|
|
|
+ xmlns="http://www.w3.org/2000/svg"
|
|
|
+ >
|
|
|
+ <path d="M5.33337 2H6.66671V10H5.33337V2Z" fill="#3681FC" />
|
|
|
+ <path
|
|
|
+ d="M10 5.33301V6.66634H2V5.33301H10Z"
|
|
|
+ fill="#3681FC"
|
|
|
+ />
|
|
|
+ </svg>
|
|
|
+ 添加声纹
|
|
|
+ </div>
|
|
|
+ <div :class="['ca_tvb_item',(choseTeacherVoiceprint&&choseTeacherVoiceprint.id==item.id)?'ca_tvb_itemActive':'']" v-for="item in teacherVoiceprintList" :key="item.id" @click.stop="choseTeacherVoiceprintFn(item)">{{ item.name }}</div>
|
|
|
+ </div>
|
|
|
+ </div> -->
|
|
|
+
|
|
|
<div
|
|
|
class="ca-b-o-h-l-btn"
|
|
|
@click.stop="uploadRecording()"
|
|
@@ -441,6 +464,7 @@
|
|
|
</div>
|
|
|
<!-- <el-progress style="width:80%" :text-inside="true" :stroke-width="24" :percentage="progressData.value"></el-progress> -->
|
|
|
</div>
|
|
|
+ <addNewTeacherVoiceprintDialog ref="addNewTeacherVoiceprintDialogRef"/>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -456,6 +480,7 @@ const lamejs = require("lamejs");
|
|
|
import vpdf from "./vpdf";
|
|
|
import _ from "lodash";
|
|
|
import Papa from "papaparse";
|
|
|
+import addNewTeacherVoiceprintDialog from "./addNewTeacherVoiceprintDialog.vue";
|
|
|
// const recorder = new Recorder({
|
|
|
// sampleBits: 16, // 采样位数,支持 8 或 16,默认是16
|
|
|
// sampleRate: 48000, // 采样率,支持 11025、16000、22050、24000、44100、48000,根据浏览器默认值,我的chrome是48000
|
|
@@ -578,7 +603,8 @@ export default {
|
|
|
transcription,
|
|
|
tape,
|
|
|
EditorBar,
|
|
|
- vpdf
|
|
|
+ vpdf,
|
|
|
+ addNewTeacherVoiceprintDialog
|
|
|
},
|
|
|
directives: {
|
|
|
"click-outside": clickOutside // 注册自定义指令
|
|
@@ -664,7 +690,18 @@ export default {
|
|
|
},
|
|
|
chatList: [],
|
|
|
actionTypesMap: {},
|
|
|
- jobContext: null
|
|
|
+ jobContext: null,
|
|
|
+ showTeacherVoiceprintBox:false,
|
|
|
+ choseTeacherVoiceprint:null,
|
|
|
+ teacherVoiceprintList:[
|
|
|
+ {id:0,name:"李正红"},
|
|
|
+ {id:1,name:"李大壮"},
|
|
|
+ {id:2,name:"李小米"},
|
|
|
+ {id:3,name:"李儒文"},
|
|
|
+ {id:4,name:"覃某某"},
|
|
|
+ {id:5,name:"覃彤彤"},
|
|
|
+
|
|
|
+ ],
|
|
|
};
|
|
|
},
|
|
|
computed: {
|
|
@@ -1728,11 +1765,11 @@ ${JSON.stringify(_list)}
|
|
|
}
|
|
|
let iiframe = this.$refs["iiframe"];
|
|
|
let _this = this;
|
|
|
- // this.uploadFile(_file,{changeText:false,flag:true})
|
|
|
+ // this.uploadFile(_file,{changeText:false,flag:true})
|
|
|
// return console.log(_file);
|
|
|
-
|
|
|
- console.log("将转录的文件👇")
|
|
|
- console.log(_file)
|
|
|
+
|
|
|
+ console.log("将转录的文件👇");
|
|
|
+ console.log(_file);
|
|
|
|
|
|
iiframe.contentWindow.window.document.getElementById(
|
|
|
"languageOptions"
|
|
@@ -1885,7 +1922,7 @@ ${JSON.stringify(_list)}
|
|
|
// console.log("这hi是一个txt文件")
|
|
|
// } else if(otherRegex.test(data.Location)){
|
|
|
//
|
|
|
- console.log(data.Location)
|
|
|
+ console.log(data.Location);
|
|
|
if (audioRegex.test(data.Location)) {
|
|
|
if (changeText) _this.wavFileGetText(file);
|
|
|
_this.$emit("changeAudioUrl", data);
|
|
@@ -2150,7 +2187,7 @@ ${JSON.stringify(_list)}
|
|
|
while (i.cells.length > 7) {
|
|
|
i.removeChild(i.lastElementChild);
|
|
|
}
|
|
|
- const actionTypeCell = i.cells[6] && i.removeChild(i.cells[6]);
|
|
|
+ const actionTypeCell = i.cells[6];
|
|
|
_editorBarDataContentRows.push(i.outerHTML);
|
|
|
if (index == 0) return;
|
|
|
if (i.cells[3].textContent != "") {
|
|
@@ -2335,6 +2372,7 @@ ${JSON.stringify(_list)}
|
|
|
url: ""
|
|
|
};
|
|
|
this.audioUrl = "";
|
|
|
+ this.choseTeacherVoiceprint = null;
|
|
|
},
|
|
|
async loadActionTypesMap() {
|
|
|
const res = await this.ajax.post(
|
|
@@ -2597,7 +2635,20 @@ ${JSON.stringify(_list)}
|
|
|
for (let i = 0; i < string.length; i++) {
|
|
|
view.setUint8(offset + i, string.charCodeAt(i));
|
|
|
}
|
|
|
- }
|
|
|
+ },
|
|
|
+ addNewTeacherVoiceprintBtn(){
|
|
|
+ this.showTeacherVoiceprintBox = false;
|
|
|
+ this.$refs.addNewTeacherVoiceprintDialogRef.open();
|
|
|
+ },
|
|
|
+ choseTeacherVoiceprintFn(item){
|
|
|
+ if(this.choseTeacherVoiceprint && item.id == this.choseTeacherVoiceprint.id)return this.choseTeacherVoiceprint = null;
|
|
|
+ this.showTeacherVoiceprintBox = false;
|
|
|
+ this.choseTeacherVoiceprint = item;
|
|
|
+ console.log("选择声纹")
|
|
|
+ },
|
|
|
+ test(){
|
|
|
+ console.log(this.editorBarData)
|
|
|
+ }
|
|
|
},
|
|
|
mounted() {}
|
|
|
};
|
|
@@ -2817,6 +2868,56 @@ ${JSON.stringify(_list)}
|
|
|
border-radius: 15px;
|
|
|
background-color: white;
|
|
|
cursor: pointer;
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+
|
|
|
+.ca_teacherVoiceprintBox {
|
|
|
+ width: auto;
|
|
|
+ height: auto;
|
|
|
+ background-color: #fff;
|
|
|
+ padding: 10px;
|
|
|
+ position: absolute;
|
|
|
+ bottom: calc(100% + 5px);
|
|
|
+ border-radius: 4px;
|
|
|
+ left: 0;
|
|
|
+ box-shadow: 0px 2px 4px -1px #0000001f;
|
|
|
+
|
|
|
+ box-shadow: 0px 4px 5px 0px #00000014;
|
|
|
+
|
|
|
+ box-shadow: 0px 1px 10px 0px #0000000d;
|
|
|
+}
|
|
|
+
|
|
|
+.ca_teacherVoiceprintBox > div {
|
|
|
+ width: 100px;
|
|
|
+ padding: 8px;
|
|
|
+ margin-top: 10px;
|
|
|
+ border-radius: 4px;
|
|
|
+ background-color: #fff;
|
|
|
+ transition: 0.3s;
|
|
|
+ cursor: pointer;
|
|
|
+}
|
|
|
+
|
|
|
+.ca_teacherVoiceprintBox > div:hover {
|
|
|
+ background-color: #f3f7fd;
|
|
|
+}
|
|
|
+
|
|
|
+.ca_tvb_itemHead{
|
|
|
+ width: 100%;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ color: #3681FC;
|
|
|
+ margin-top: 0 !important;
|
|
|
+ border: solid 1px #3681FC;
|
|
|
+}
|
|
|
+
|
|
|
+.ca_tvb_itemHead>svg{
|
|
|
+ margin-right: 5px;
|
|
|
+}
|
|
|
+
|
|
|
+.ca_tvb_itemActive{
|
|
|
+ color: #3681FC;
|
|
|
+ background-color: #f3f7fd !important;
|
|
|
}
|
|
|
|
|
|
.ca-b-o-h-right {
|