From 036d828a7e5d1a40539addccc2c37733e86ec97d Mon Sep 17 00:00:00 2001 From: Downupanddownup Date: Thu, 2 May 2024 07:26:26 +0800 Subject: [PATCH] =?UTF-8?q?bug=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Ref_Audio_Selector/tool/audio_sample.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ref_Audio_Selector/tool/audio_sample.py b/Ref_Audio_Selector/tool/audio_sample.py index 9655911..8f02c7e 100644 --- a/Ref_Audio_Selector/tool/audio_sample.py +++ b/Ref_Audio_Selector/tool/audio_sample.py @@ -40,7 +40,7 @@ def convert_from_list(list_file, output_dir): audio_path, _, _, transcription = parts # 构建新的文件名和路径 - new_filename = transcription + '.wav' + new_filename = transcription.strip() + '.wav' # new_filename = new_filename.replace(' ', '_') # 移除空格 # new_filename = ''.join(e for e in new_filename if e.isalnum() or e in ['_', '.']) # 移除非法字符 new_path = os.path.join(output_dir, new_filename)