mirror of
https://github.com/RVC-Boss/GPT-SoVITS.git
synced 2025-04-06 03:57:44 +08:00
Fix hyphen (#1454)
This commit is contained in:
parent
c60e796452
commit
012de7058c
@ -324,6 +324,8 @@ class en_G2p(G2p):
|
|||||||
# 单读 A 发音修正, 此处不存在大写的情况
|
# 单读 A 发音修正, 此处不存在大写的情况
|
||||||
if w == "a":
|
if w == "a":
|
||||||
phones.extend(['EY1'])
|
phones.extend(['EY1'])
|
||||||
|
elif not w.isalpha():
|
||||||
|
phones.extend([w])
|
||||||
else:
|
else:
|
||||||
phones.extend(self.cmu[w][0])
|
phones.extend(self.cmu[w][0])
|
||||||
return phones
|
return phones
|
||||||
|
Loading…
x
Reference in New Issue
Block a user