mirror of
https://github.com/RVC-Boss/GPT-SoVITS.git
synced 2025-04-06 03:57:44 +08:00
Adjust ja clean text
This commit is contained in:
parent
f6c9803909
commit
c70a609a31
@ -248,6 +248,10 @@ def clean_text_inf(text, language):
|
|||||||
formattext = ""
|
formattext = ""
|
||||||
language = language.replace("all_","")
|
language = language.replace("all_","")
|
||||||
for tmp in LangSegment.getTexts(text):
|
for tmp in LangSegment.getTexts(text):
|
||||||
|
if language == "ja":
|
||||||
|
if tmp["lang"] == language or tmp["lang"] == "zh":
|
||||||
|
formattext += tmp["text"] + " "
|
||||||
|
continue
|
||||||
if tmp["lang"] == language:
|
if tmp["lang"] == language:
|
||||||
formattext += tmp["text"] + " "
|
formattext += tmp["text"] + " "
|
||||||
while " " in formattext:
|
while " " in formattext:
|
||||||
@ -279,8 +283,6 @@ def nonen_clean_text_inf(text, language):
|
|||||||
for tmp in LangSegment.getTexts(text):
|
for tmp in LangSegment.getTexts(text):
|
||||||
langlist.append(tmp["lang"])
|
langlist.append(tmp["lang"])
|
||||||
textlist.append(tmp["text"])
|
textlist.append(tmp["text"])
|
||||||
print(textlist)
|
|
||||||
print(langlist)
|
|
||||||
phones_list = []
|
phones_list = []
|
||||||
word2ph_list = []
|
word2ph_list = []
|
||||||
norm_text_list = []
|
norm_text_list = []
|
||||||
|
Loading…
x
Reference in New Issue
Block a user