|
@@ -30,7 +30,7 @@
|
|
|
size="small"
|
|
|
@click="analyzeVoiceFile"
|
|
|
>根据语音和文本进行打点标记</el-button>
|
|
|
- <span :style="{'margin': '12px'}">匹配模式</span>
|
|
|
+ <span :style="{ margin: '12px' }">匹配模式</span>
|
|
|
<el-select v-model="match_type" size="small">
|
|
|
<el-option
|
|
|
v-for="li in matchTypeList"
|
|
@@ -156,7 +156,7 @@ export default {
|
|
|
lrc_list: []
|
|
|
},
|
|
|
isShowMatrix: false,
|
|
|
- match_type: 'pinyin',
|
|
|
+ match_type: "pinyin",
|
|
|
rowNumber: 1,
|
|
|
columnNumber: 1,
|
|
|
typeList: [
|
|
@@ -283,7 +283,7 @@ export default {
|
|
|
getContentFile("tool-AnalyzeVoiceFile", {
|
|
|
file_id: mp3_list[0].file_id,
|
|
|
text_list,
|
|
|
- language: 'ZH',
|
|
|
+ language: "ZH",
|
|
|
match_type: this.match_type
|
|
|
})
|
|
|
.then(({ lrc_list }) => {
|