1
0
mirror of synced 2024-11-23 23:21:03 +01:00

Merge pull request #2117 from HuanLinOTO/feat-fallback-encoding

feat: fallback to system encoding when fail to read file with utf-8
This commit is contained in:
RVC-Boss 2024-06-09 00:20:50 +08:00 committed by GitHub
commit 2ac522f4ca
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -278,8 +278,13 @@ def load_wav_to_torch(full_path):
def load_filepaths_and_text(filename, split="|"):
with open(filename, encoding="utf-8") as f:
filepaths_and_text = [line.strip().split(split) for line in f]
try:
with open(filename, encoding="utf-8") as f:
filepaths_and_text = [line.strip().split(split) for line in f]
except UnicodeDecodeError:
with open(filename) as f:
filepaths_and_text = [line.strip().split(split) for line in f]
return filepaths_and_text