mirror of
https://github.com/myshell-ai/OpenVoice.git
synced 2025-12-16 16:37:56 +01:00
15 lines
668 B
Python
15 lines
668 B
Python
import re
|
|
from text.english import english_to_lazy_ipa, english_to_ipa2, english_to_lazy_ipa2
|
|
|
|
def cjke_cleaners2(text):
|
|
text = re.sub(r'\[ZH\](.*?)\[ZH\]',
|
|
lambda x: chinese_to_ipa(x.group(1))+' ', text)
|
|
text = re.sub(r'\[JA\](.*?)\[JA\]',
|
|
lambda x: japanese_to_ipa2(x.group(1))+' ', text)
|
|
text = re.sub(r'\[KO\](.*?)\[KO\]',
|
|
lambda x: korean_to_ipa(x.group(1))+' ', text)
|
|
text = re.sub(r'\[EN\](.*?)\[EN\]',
|
|
lambda x: english_to_ipa2(x.group(1))+' ', text)
|
|
text = re.sub(r'\s+$', '', text)
|
|
text = re.sub(r'([^\.,!\?\-…~])$', r'\1.', text)
|
|
return text |