Merge pull request #2418 from Risenafis/fix-sbvits-style
Fix Style-Bert-VITS2 style
This commit is contained in:
commit
0f00adca0c
|
@ -276,7 +276,8 @@ class SBVits2TtsProvider {
|
|||
async fetchTtsGeneration(inputText, voiceId) {
|
||||
console.info(`Generating new TTS for voice_id ${voiceId}`);
|
||||
|
||||
const [model_id, speaker_id, style] = voiceId.split('-');
|
||||
const [model_id, speaker_id, ...rest] = voiceId.split('-');
|
||||
const style = rest.join('-');
|
||||
const params = new URLSearchParams();
|
||||
// restore for auto_split
|
||||
inputText = inputText.replaceAll('<br>', '\n');
|
||||
|
|
Loading…
Reference in New Issue