-
Notifications
You must be signed in to change notification settings - Fork 19
/
script.js
761 lines (651 loc) · 25.8 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
let apiConfig;
let lastRequestTime = 0;
let currentAudioURL = null;
let requestCounter = 0;
let isGenerating = false;
const API_CONFIG = {
'workers-api': {
url: 'https://1220.tts-api.zwei.de.eu.org/tts',
authToken: 'your-key'
},
'deno-api': {
url: 'https://deno-tts.api.zwei.de.eu.org/tts'
}
};
function loadSpeakers() {
return $.ajax({
url: 'speakers.json',
method: 'GET',
dataType: 'json',
success: function(data) {
apiConfig = data;
updateSpeakerOptions('workers-api');
},
error: function(jqXHR, textStatus, errorThrown) {
console.error(`加载讲述者失败:${textStatus} - ${errorThrown}`);
showError('加载讲述者失败,请刷新页面重试。');
}
});
}
function updateSpeakerOptions(apiName) {
const speakers = apiConfig[apiName].speakers;
const speakerSelect = $('#speaker');
speakerSelect.empty();
Object.entries(speakers).forEach(([key, value]) => {
speakerSelect.append(new Option(value, key));
});
}
function updateSliderLabel(sliderId, labelId) {
const slider = $(`#${sliderId}`);
const label = $(`#${labelId}`);
label.text(slider.val());
slider.off('input').on('input', function() {
label.text(this.value);
});
}
$(document).ready(function() {
loadSpeakers().then(() => {
$('#apiTips').text('使用 Workers API,每天限制 100000 次请求');
// 初始化音频播放器
initializeAudioPlayer();
$('[data-toggle="tooltip"]').tooltip();
$('#api').on('change', function() {
const apiName = $(this).val();
updateSpeakerOptions(apiName);
$('#rate, #pitch').val(0);
updateSliderLabel('rate', 'rateValue');
updateSliderLabel('pitch', 'pitchValue');
const tips = {
'workers-api': '使用 Workers API,每天限制 100000 次请求',
'deno-api': '使用 Deno API,基于 Lobe-TTS,暂不支持语速语调调整'
};
$('#apiTips').text(tips[apiName] || '');
});
updateSliderLabel('rate', 'rateValue');
updateSliderLabel('pitch', 'pitchValue');
$('#generateButton').on('click', function() {
if (canMakeRequest()) {
generateVoice(false);
} else {
showError('请稍候再试,3秒只能请求一次。');
}
});
$('#previewButton').on('click', function() {
if (canMakeRequest()) {
generateVoice(true);
} else {
showError('请稍候再试,每3秒只能请求一次。');
}
});
$('#text').on('input', function() {
const currentLength = $(this).val().length;
$('#charCount').text(`最多50000个字符,目前已输入${currentLength}个字符;长文本将智能分段生成语音。`);
});
// 添加插入停顿功能
$('#insertPause').on('click', function() {
const seconds = parseFloat($('#pauseSeconds').val());
if (isNaN(seconds) || seconds < 0.01 || seconds > 100) {
showError('请输入0.01到100之间的数字');
return;
}
const textarea = $('#text')[0];
const cursorPos = textarea.selectionStart;
const textBefore = textarea.value.substring(0, cursorPos);
const textAfter = textarea.value.substring(textarea.selectionEnd);
// 插入停顿标记
const pauseTag = `<break time="${seconds}s"/>`;
textarea.value = textBefore + pauseTag + textAfter;
// 恢复光标位置
const newPos = cursorPos + pauseTag.length;
textarea.setSelectionRange(newPos, newPos);
textarea.focus();
});
// 限制输入数字范围
$('#pauseSeconds').on('input', function() {
let value = parseFloat($(this).val());
if (value > 100) $(this).val(100);
if (value < 0.01 && value !== '') $(this).val(0.01);
});
});
});
function canMakeRequest() {
if (isGenerating) {
showError('请等待当前语音生成完成');
return false;
}
return true;
}
async function generateVoice(isPreview) {
const apiName = $('#api').val();
const apiUrl = API_CONFIG[apiName].url;
const text = $('#text').val().trim();
if (!text) {
showError('请输入要转换的文本');
return;
}
if (isPreview) {
const previewText = text.substring(0, 20);
try {
const blob = await makeRequest(apiUrl, true, previewText, apiName === 'deno-api');
if (blob) {
if (currentAudioURL) {
URL.revokeObjectURL(currentAudioURL);
}
currentAudioURL = URL.createObjectURL(blob);
$('#result').show();
$('#audio').attr('src', currentAudioURL);
$('#download').attr('href', currentAudioURL);
}
} catch (error) {
showError('试听失败:' + error.message);
}
return;
}
if (!canMakeRequest()) {
return;
}
// 设置生成状态
isGenerating = true;
$('#generateButton').prop('disabled', true);
$('#previewButton').prop('disabled', true);
// 处理长文本
const segments = splitText(text);
requestCounter++;
const currentRequestId = requestCounter;
if (segments.length > 1) {
showLoading(`正在生成#${currentRequestId}请求的 1/${segments.length} 段语音...`);
generateVoiceForLongText(segments, currentRequestId).then(finalBlob => {
if (finalBlob) {
if (currentAudioURL) {
URL.revokeObjectURL(currentAudioURL);
}
currentAudioURL = URL.createObjectURL(finalBlob);
$('#result').show();
$('#audio').attr('src', currentAudioURL);
$('#download').attr('href', currentAudioURL);
}
}).finally(() => {
hideLoading();
isGenerating = false; // 重置生成状态
$('#generateButton').prop('disabled', false);
$('#previewButton').prop('disabled', false);
});
} else {
showLoading(`正在生成#${currentRequestId}请求的语音...`);
const requestInfo = `#${currentRequestId}(1/1)`;
makeRequest(apiUrl, false, text, apiName === 'deno-api', requestInfo)
.then(blob => {
if (blob) {
const timestamp = new Date().toLocaleTimeString();
const speaker = $('#speaker option:selected').text();
const cleanText = text.replace(/<break\s+time=["'](\d+(?:\.\d+)?[ms]s?)["']\s*\/>/g, '');
const shortenedText = cleanText.length > 7 ? cleanText.substring(0, 7) + '...' : cleanText;
addHistoryItem(timestamp, speaker, shortenedText, blob, requestInfo);
}
})
.finally(() => {
hideLoading();
isGenerating = false; // 重置生成状态
$('#generateButton').prop('disabled', false);
$('#previewButton').prop('disabled', false);
});
}
}
const cachedAudio = new Map();
function escapeXml(text) {
// 临时替换 SSML 标签
const ssmlTags = [];
let tempText = text.replace(/<break\s+time=["'](\d+(?:\.\d+)?[ms]s?)["']\s*\/>/g, (match) => {
ssmlTags.push(match);
return `__SSML_TAG_${ssmlTags.length - 1}__`;
});
// 转义其他特殊字符
tempText = tempText
.replace(/&/g, '&')
.replace(/</g, '<')
.replace(/>/g, '>')
.replace(/"/g, '"')
.replace(/'/g, ''');
// 还原 SSML 标签
tempText = tempText.replace(/__SSML_TAG_(\d+)__/g, (_, index) => ssmlTags[parseInt(index)]);
return tempText;
}
async function makeRequest(url, isPreview, text, isDenoApi, requestId = '') {
try {
// 转义文本中的特殊字符,但保护 SSML 标签
const escapedText = escapeXml(text);
const apiName = $('#api').val();
const headers = {
'Accept': 'audio/mpeg',
'Content-Type': 'application/json'
};
// 如果是 workers-api,添加认证头
if (apiName === 'workers-api') {
headers['x-auth-token'] = API_CONFIG[apiName].authToken;
}
const response = await fetch(url, {
method: 'POST',
headers: headers,
body: JSON.stringify({
text: escapedText,
voice: $('#speaker').val(),
rate: parseInt($('#rate').val()),
pitch: parseInt($('#pitch').val()),
preview: isPreview
})
});
if (!response.ok) {
throw new Error(`服务器响应错误: ${response.status}`);
}
const blob = await response.blob();
// 验证返回的blob是否为有效的音频文件
if (!blob.type.includes('audio/') || blob.size === 0) {
throw new Error('无效的音频文件');
}
if (!isPreview) {
currentAudioURL = URL.createObjectURL(blob);
$('#result').show();
$('#audio').attr('src', currentAudioURL);
$('#download')
.removeClass('disabled')
.attr('href', currentAudioURL);
}
return blob;
} catch (error) {
console.error('请求错误:', error);
throw error;
}
}
function showError(message) {
showMessage(message, 'danger');
}
function addHistoryItem(timestamp, speaker, text, audioBlob, requestInfo = '') {
const MAX_HISTORY = 50;
const historyItems = $('#historyItems');
if (historyItems.children().length >= MAX_HISTORY) {
const oldestItem = historyItems.children().last();
oldestItem.remove();
}
const audioURL = URL.createObjectURL(audioBlob);
cachedAudio.set(audioURL, audioBlob);
// 清理文本中的 SSML 标签
const cleanText = text.replace(/<break\s+time=["'](\d+(?:\.\d+)?[ms]s?)["']\s*\/>/g, '');
const historyItem = $(`
<div class="history-item list-group-item" style="opacity: 0;">
<div class="d-flex justify-content-between align-items-center">
<span class="text-truncate me-2" style="max-width: 70%;">
<strong class="text-primary">${requestInfo}</strong>
${timestamp} - <span class="text-primary">${speaker}</span> - ${cleanText}
</span>
<div class="btn-group flex-shrink-0">
<button class="btn btn-sm btn-outline-primary play-btn" data-url="${audioURL}">
<i class="fas fa-play"></i>
</button>
<button class="btn btn-sm btn-outline-success" onclick="downloadAudio('${audioURL}')">
<i class="fas fa-download"></i>
</button>
</div>
</div>
</div>
`);
// 添加整个条目的点击事件
historyItem.on('click', function(e) {
// 如果点击的是按钮,不触发条目的点击事件
if (!$(e.target).closest('.btn-group').length) {
playAudio(audioURL);
// 更新预览区
if (currentAudioURL) {
URL.revokeObjectURL(currentAudioURL);
}
currentAudioURL = URL.createObjectURL(cachedAudio.get(audioURL));
$('#result').show();
$('#audio').attr('src', currentAudioURL);
$('#download')
.removeClass('disabled')
.attr('href', currentAudioURL);
}
});
// 在条目被移除时清理资源
historyItem.on('remove', () => {
URL.revokeObjectURL(audioURL);
cachedAudio.delete(audioURL);
});
historyItem.find('.play-btn').on('click', function(e) {
e.stopPropagation(); // 阻止事件冒泡
playAudio($(this).data('url'));
});
$('#historyItems').prepend(historyItem);
setTimeout(() => historyItem.animate({ opacity: 1 }, 300), 50);
}
function playAudio(audioURL) {
const audioElement = $('#audio')[0];
const allPlayButtons = $('.play-btn');
// 如果点击的是当前正在播放的音频
if (audioElement.src === audioURL && !audioElement.paused) {
audioElement.pause();
allPlayButtons.each(function() {
if ($(this).data('url') === audioURL) {
$(this).html('<i class="fas fa-play"></i>');
}
});
return;
}
// 重置所有按钮标
allPlayButtons.html('<i class="fas fa-play"></i>');
// 设置新的音频源并播放
audioElement.src = audioURL;
audioElement.load();
// 只在实际播放时才设置错误处理
audioElement.play().then(() => {
// 更新当前播放按钮图标
allPlayButtons.each(function() {
if ($(this).data('url') === audioURL) {
$(this).html('<i class="fas fa-pause"></i>');
}
});
}).catch(error => {
if (error.name !== 'AbortError') { // 忽略中止错误
console.error('播放失败:', error);
showError('音频播放失败,请重试');
}
});
// 监听播放结束事件
audioElement.onended = function() {
allPlayButtons.each(function() {
if ($(this).data('url') === audioURL) {
$(this).html('<i class="fas fa-play"></i>');
}
});
};
}
function downloadAudio(audioURL) {
const blob = cachedAudio.get(audioURL);
if (blob) {
const link = document.createElement('a');
link.href = URL.createObjectURL(blob);
link.download = 'audio.mp3';
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
URL.revokeObjectURL(link.href);
}
}
function clearHistory() {
$('#historyItems .history-item').each(function() {
$(this).remove();
});
// 清理所有缓存的音频
cachedAudio.forEach((blob, url) => {
URL.revokeObjectURL(url);
});
cachedAudio.clear();
$('#historyItems').empty();
alert("历史记录已清除!");
}
function initializeAudioPlayer() {
const audio = document.getElementById('audio');
audio.style.borderRadius = '12px';
audio.style.width = '100%';
audio.style.marginTop = '20px';
// 初始状态设置
$('#download')
.addClass('disabled')
.attr('href', '#');
$('#audio').attr('src', '');
}
function showMessage(message, type = 'danger') {
const toast = $(`
<div class="toast">
<div class="toast-body toast-${type}">
${message}
</div>
</div>
`);
$('.toast-container').append(toast);
// 显示动画
setTimeout(() => {
toast.addClass('show');
}, 100);
// 3秒后淡出并移除
setTimeout(() => {
toast.removeClass('show');
setTimeout(() => toast.remove(), 300);
}, 3000);
}
// 添加句子结束符号的正则表达式
const SENTENCE_ENDINGS = /[.。!!??]/;
const PARAGRAPH_ENDINGS = /[\n\r]/;
function getTextLength(str) {
// 移除 XML 标签,但记录停顿时间
let totalPauseTime = 0;
const textWithoutTags = str.replace(/<break\s+time="(\d+(?:\.\d+)?)(m?s)"\s*\/>/g, (match, time, unit) => {
const seconds = unit === 'ms' ? parseFloat(time) / 1000 : parseFloat(time);
totalPauseTime += seconds;
return '';
});
// 计算文本长度(中文2字符,英文1字符)
const textLength = textWithoutTags.split('').reduce((acc, char) => {
return acc + (char.charCodeAt(0) > 127 ? 2 : 1);
}, 0);
// 将停顿时间转换为等效字符长度(1秒 = 11个单位,相当于5.5个中文字符)
const pauseLength = Math.round(totalPauseTime * 11);
return textLength + pauseLength;
}
function splitText(text, maxLength = 5000) {
const segments = [];
let remainingText = text.trim();
const punctuationGroups = [
// 第一优先级: 换行符
['\n', '\r\n'],
// 第二优先级: 句末标点
[
'。', '!', '?', // 中文
'.', '!', '?', // 英文
'。', '!', '?', // 日文
'︒', '︕', '︖', // 全角
'。', '!', '?', // 半角
'।', '॥', // 梵文
'؟', '۔', // 阿拉伯文
'។', '៕', // 高棉文
'။', '၏', // 缅甸文
'¿', '¡', // 西班牙文
'‼', '⁇', '⁈', '⁉', // 组合标点
'‽','~' // 叹问号
],
// 第三优先级: 分号
[
';', ';', // 中英文
';', // 日文
'︔', '︐', // 全角
'؛', // 阿拉伯文
'፤', // 埃塞俄比亚文
'꛶' // 巴姆穆文
],
// 第四优先级: 逗号和冒号
[
',', ':', // 中文
',', ':', // 英文
'、', ',', ':', // 日文
'︑', '︓', // 全角
'、', ':', '،', // 半角/阿拉伯文
'፣', '፥', // 埃塞俄比亚文
'၊', '၌', // 缅甸文
'،', '؍', // 波斯文
'׀', ',' // 希伯来文
],
// 第五优先级: 其他标点
[
'、', '…', '―', '─', // 中文破折号
'-', '—', '–', // 英文破折号
'‥', '〳', '〴', '〵', // 日文重复符号
'᠁', '᠂', '᠃', // 蒙古文
'᭛', '᭜', '᭝', // 巴厘文
'᱾', '᱿', // 雷布查文
'⁂', '※', // 特殊符号
'〽', '〜' // 其他变音符号
],
// 第六优先级: 空格和其他分隔符
[
' ', '\t', // 空格和制表符
' ', // 全角空格
'〿', '〮', '〯', // 其他分隔符
'᠀', // 蒙古文分隔符
'᭟', '᭠', // 巴厘文分隔符
'᳓', '᳔', '᳕' // 韵律标记
]
];
while (remainingText.length > 0) {
let splitIndex = remainingText.length;
let currentLength = 0;
let bestSplitIndex = -1;
let bestPriorityFound = -1;
for (let i = 0; i < remainingText.length; i++) {
currentLength += remainingText.charCodeAt(i) > 127 ? 2 : 1;
if (currentLength > maxLength) {
splitIndex = i;
// 先遍历优先级组
for (let priority = 0; priority < punctuationGroups.length; priority++) {
let searchLength = 0;
// 在300单位范围内搜索当前优先级的标点
for (let j = i; j >= 0 && searchLength <= 300; j--) {
searchLength += remainingText.charCodeAt(j) > 127 ? 2 : 1;
if (punctuationGroups[priority].includes(remainingText[j])) {
// 找到当前优先级的标点,记录位置并停止搜索
bestPriorityFound = priority;
bestSplitIndex = j;
break;
}
}
// 如果在当前优先级找到了分段点,就不再检查更低优先级
if (bestSplitIndex > -1) break;
}
break;
}
}
if (bestSplitIndex > 0) {
splitIndex = bestSplitIndex + 1;
}
segments.push(remainingText.substring(0, splitIndex));
remainingText = remainingText.substring(splitIndex).trim();
}
return segments;
}
function showLoading(message) {
let loadingToast = $('.toast-loading');
if (loadingToast.length) {
// 如果已存在 loading toast,只更新进度条,不更新消息
loadingToast.find('.progress-bar').css('width', '0%');
return;
}
// 创建新的loading提示
const toast = $(`
<div class="toast toast-loading">
<div class="toast-body toast-info">
<div class="text-center">
<i class="fas fa-spinner fa-spin"></i>
<div class="loading-message mt-2">${message}</div>
<div class="progress mt-2">
<div class="progress-bar" role="progressbar" style="width: 0%"></div>
</div>
</div>
</div>
</div>
`);
$('.toast-container').append(toast);
setTimeout(() => toast.addClass('show'), 100);
}
function hideLoading() {
const loadingToast = $('.toast-loading');
loadingToast.removeClass('show');
setTimeout(() => loadingToast.remove(), 300);
}
function updateLoadingProgress(progress, message) {
const loadingToast = $('.toast-loading');
if (loadingToast.length) {
loadingToast.find('.progress-bar').css('width', `${progress}%`);
loadingToast.find('.loading-message').text(message);
}
}
async function generateVoiceForLongText(segments, currentRequestId) {
const results = [];
const apiName = $('#api').val();
const apiUrl = API_CONFIG[apiName].url;
const totalSegments = segments.length;
// 获取原始文本并清理 SSML 标签
const originalText = $('#text').val();
const cleanText = originalText.replace(/<break\s+time=["'](\d+(?:\.\d+)?[ms]s?)["']\s*\/>/g, '');
const shortenedText = cleanText.length > 7 ? cleanText.substring(0, 7) + '...' : cleanText;
showLoading('');
let hasSuccessfulSegment = false;
const MAX_RETRIES = 3;
for (let i = 0; i < segments.length; i++) {
let retryCount = 0;
let success = false;
let lastError = null;
while (retryCount < MAX_RETRIES && !success) {
try {
const progress = ((i + 1) / totalSegments * 100).toFixed(1);
const retryInfo = retryCount > 0 ? `(重试 ${retryCount}/${MAX_RETRIES})` : '';
updateLoadingProgress(
progress,
`正在生成#${currentRequestId}请求的 ${i + 1}/${totalSegments} 段语音${retryInfo}...`
);
const blob = await makeRequest(
apiUrl,
false,
segments[i],
apiName === 'deno-api',
`#${currentRequestId}(${i + 1}/${totalSegments})`
);
if (blob) {
hasSuccessfulSegment = true;
success = true;
results.push(blob);
const timestamp = new Date().toLocaleTimeString();
const speaker = $('#speaker option:selected').text();
// 清理当前段的 SSML 标签
const cleanSegmentText = segments[i].replace(/<break\s+time=["'](\d+(?:\.\d+)?[ms]s?)["']\s*\/>/g, '');
const shortenedSegmentText = cleanSegmentText.length > 7 ? cleanSegmentText.substring(0, 7) + '...' : cleanSegmentText;
const requestInfo = `#${currentRequestId}(${i + 1}/${totalSegments})`;
addHistoryItem(timestamp, speaker, shortenedSegmentText, blob, requestInfo);
}
} catch (error) {
lastError = error;
retryCount++;
if (retryCount < MAX_RETRIES) {
console.error(`分段 ${i + 1} 生成失败 (重试 ${retryCount}/${MAX_RETRIES}):`, error);
const waitTime = 3000 + (retryCount * 2000);
await new Promise(resolve => setTimeout(resolve, waitTime));
} else {
showError(`第 ${i + 1}/${totalSegments} 段生成失败:${error.message}`);
}
}
}
if (!success) {
console.error(`分段 ${i + 1} 在 ${MAX_RETRIES} 次尝试后仍然失败:`, lastError);
}
if (success && i < segments.length - 1) {
await new Promise(resolve => setTimeout(resolve, 3000));
}
}
hideLoading();
if (results.length > 0) {
const finalBlob = new Blob(results, { type: 'audio/mpeg' });
const timestamp = new Date().toLocaleTimeString();
const speaker = $('#speaker option:selected').text();
// 使用之前清理过的文本
const mergeRequestInfo = `#${currentRequestId}(合并)`;
addHistoryItem(timestamp, speaker, shortenedText, finalBlob, mergeRequestInfo);
return finalBlob;
}
throw new Error('所有片段生成失败');
}
// 在 body 末尾添加 toast 容器
$('body').append('<div class="toast-container"></div>');
// 可以添加其他类型的消息提示
function showWarning(message) {
showMessage(message, 'warning');
}
function showInfo(message) {
showMessage(message, 'info');
}