mirror of
https://github.com/RVC-Boss/GPT-SoVITS.git
synced 2025-04-05 19:41:56 +08:00
feat: deal with edge case
This commit is contained in:
parent
2c1eb59283
commit
bd42a6923f
@ -353,7 +353,10 @@ def merge_short_text_in_array(texts, threshold):
|
||||
result.append(text)
|
||||
text = ""
|
||||
if (len(text) > 0):
|
||||
result[len(result)] += text
|
||||
if len(result) == 0:
|
||||
result.append(text)
|
||||
else:
|
||||
result[len(result) - 1] += text
|
||||
return result
|
||||
|
||||
def get_tts_wav(ref_wav_path, prompt_text, prompt_language, text, text_language, how_to_cut=i18n("不切")):
|
||||
|
Loading…
x
Reference in New Issue
Block a user