Update my_utils.py

This commit is contained in:
RVC-Boss 2024-08-07 16:15:47 +08:00 committed by GitHub
parent 50c6db9c78
commit 4ea338c811
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -28,6 +28,5 @@ def load_audio(file, sr):
def clean_path(path_str:str):
if path_str.endswith(('\\','/')):
return clean_path(path_str[0:-1])
if platform.system() == 'Windows':
path_str = path_str.replace('/', '\\')
return path_str.strip(" ").strip('\'').strip("\n").strip('"').strip(" ").strip("\u202a")
path_str = path_str.replace('/', os.sep).replace('\\', os.sep)
return path_str.strip(" ").strip('\'').strip("\n").strip('"').strip(" ").strip("\u202a")