bug修复

This commit is contained in:
Downupanddownup 2024-05-02 07:26:26 +08:00
parent 7e1c40ef9f
commit 036d828a7e

View File

@ -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)