feat: 优化学习视频转写与字幕清洗

This commit is contained in:
2026-09-11 14:26:02 +08:00
parent a8fe133aa4
commit eba9163246
12 changed files with 552 additions and 28 deletions
+3
View File
@@ -18,6 +18,9 @@ async function loadBatchWorkflowOptions() {
.join("")
: '<option value="">暂无已发布工作流</option>';
apps.forEach((app) => WORKFLOW_NAMES.set(app.id, app.name));
// 批量处理默认使用 learn-translate 工作流(面向学习/讲解类视频,优先召回弱语音)。
const learnOption = select.querySelector('option[value="learn-translate"]');
if (learnOption) learnOption.selected = true;
}
// 创建批量任务:POST 文件夹路径与所选工作流,成功后清空输入并刷新列表。