diff --git a/Ref_Audio_Selector/ref_audio_selector_webui.py b/Ref_Audio_Selector/ref_audio_selector_webui.py index 05d6d7c..6946fee 100644 --- a/Ref_Audio_Selector/ref_audio_selector_webui.py +++ b/Ref_Audio_Selector/ref_audio_selector_webui.py @@ -1,4 +1,7 @@ +import os.path + import gradio as gr +import Ref_Audio_Selector.tool.ref_audio_opt as ref_audio_opt from tools.i18n.i18n import I18nAuto i18n = I18nAuto() @@ -14,13 +17,14 @@ def check_base_info(text_work_space_dir, text_character): # 从list文件,提取参考音频 def convert_from_list(text_work_space_dir, text_character, text_list_input): - text_convert_from_list_info = "转换成功:生成目录XXX" - text_sample_dir = "D://tt" + ref_audio_all = os.path.join(text_work_space_dir, 'ref_audio_all') + text_convert_from_list_info = f"转换成功:生成目录${ref_audio_all}" + text_sample_dir = ref_audio_all try: check_base_info(text_work_space_dir, text_character) if text_list_input is None or text_list_input == '': raise Exception(i18n("list文件路径不能为空")) - pass + ref_audio_opt.convert_from_list(text_list_input, ref_audio_all) except Exception as e: text_convert_from_list_info = f"发生异常:{e}" text_sample_dir = '' @@ -69,7 +73,8 @@ def model_inference(text_work_space_dir, text_character, text_model_inference_vo raise Exception(i18n("文本参数名不能为空")) if text_test_content is None or text_test_content == '': raise Exception(i18n("待推理文本路径不能为空")) - if (text_ref_path is None or text_ref_path == '') and (text_ref_text is None or text_ref_text == '') and (text_emotion is None or text_emotion == ''): + if (text_ref_path is None or text_ref_path == '') and (text_ref_text is None or text_ref_text == '') and ( + text_emotion is None or text_emotion == ''): raise Exception(i18n("参考音频路径/文本和角色情绪二选一填写,不能全部为空")) pass except Exception as e: diff --git a/Ref_Audio_Selector/tool/__init__.py b/Ref_Audio_Selector/tool/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/Ref_Audio_Selector/tool/ref_audio_opt.py b/Ref_Audio_Selector/tool/ref_audio_opt.py new file mode 100644 index 0000000..fb7bd7e --- /dev/null +++ b/Ref_Audio_Selector/tool/ref_audio_opt.py @@ -0,0 +1,46 @@ +import os +import shutil + + +def convert_from_list(list_file, output_dir): + # 创建输出目录,如果它不存在的话 + if not os.path.exists(output_dir): + os.makedirs(output_dir) + + # 解析.list文件,并操作文件 + with open(list_file, 'r', encoding='utf-8') as file: + lines = file.readlines() + + for line in lines: + parts = line.strip().split('|') + if len(parts) != 4: + print(f"Line format incorrect: {line}") + continue + + audio_path, _, _, transcription = parts + + # 构建新的文件名和路径 + new_filename = transcription + '.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) + + # 如果目标文件已存在,不要覆盖 + if os.path.exists(new_path): + print(f"File already exists: {new_path}") + continue + + try: + # 检查音频文件是否存在 + if not os.path.exists(audio_path): + print(f"Audio file does not exist: {audio_path}") + continue + + # 复制音频文件到output目录并重命名 + shutil.copy2(audio_path, new_path) + print(f"File copied and renamed to: {new_path}") + except Exception as e: + print(f"An error occurred while processing: {audio_path}") + print(e) + + print("Processing complete.")