Merge pull request #2365 from Risenafis/fix-sbvits-splitting

Fix Style-Bert-VITS2 auto splitting
This commit is contained in:
Cohee 2024-06-10 23:23:27 +03:00 committed by GitHub
commit ea21de89c3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 0 deletions

View File

@ -19,6 +19,8 @@ class SBVits2TtsProvider {
* @returns {string} Processed text * @returns {string} Processed text
*/ */
processText(text) { processText(text) {
// backup for auto_split
text = text.replace(/\n+/g, '<br>');
return text; return text;
} }
@ -276,6 +278,8 @@ class SBVits2TtsProvider {
const [model_id, speaker_id, style] = voiceId.split('-'); const [model_id, speaker_id, style] = voiceId.split('-');
const params = new URLSearchParams(); const params = new URLSearchParams();
// restore for auto_split
inputText = inputText.replaceAll('<br>', '\n');
params.append('text', inputText); params.append('text', inputText);
params.append('model_id', model_id); params.append('model_id', model_id);
params.append('speaker_id', speaker_id); params.append('speaker_id', speaker_id);