mirror of
https://github.com/RVC-Boss/GPT-SoVITS.git
synced 2025-04-05 19:41:56 +08:00
添加根据list,转换参考音频的方法
This commit is contained in:
parent
7efdf31113
commit
29b8370c45
@ -1,4 +1,7 @@
|
|||||||
|
import os.path
|
||||||
|
|
||||||
import gradio as gr
|
import gradio as gr
|
||||||
|
import Ref_Audio_Selector.tool.ref_audio_opt as ref_audio_opt
|
||||||
from tools.i18n.i18n import I18nAuto
|
from tools.i18n.i18n import I18nAuto
|
||||||
|
|
||||||
i18n = I18nAuto()
|
i18n = I18nAuto()
|
||||||
@ -14,13 +17,14 @@ def check_base_info(text_work_space_dir, text_character):
|
|||||||
|
|
||||||
# 从list文件,提取参考音频
|
# 从list文件,提取参考音频
|
||||||
def convert_from_list(text_work_space_dir, text_character, text_list_input):
|
def convert_from_list(text_work_space_dir, text_character, text_list_input):
|
||||||
text_convert_from_list_info = "转换成功:生成目录XXX"
|
ref_audio_all = os.path.join(text_work_space_dir, 'ref_audio_all')
|
||||||
text_sample_dir = "D://tt"
|
text_convert_from_list_info = f"转换成功:生成目录${ref_audio_all}"
|
||||||
|
text_sample_dir = ref_audio_all
|
||||||
try:
|
try:
|
||||||
check_base_info(text_work_space_dir, text_character)
|
check_base_info(text_work_space_dir, text_character)
|
||||||
if text_list_input is None or text_list_input == '':
|
if text_list_input is None or text_list_input == '':
|
||||||
raise Exception(i18n("list文件路径不能为空"))
|
raise Exception(i18n("list文件路径不能为空"))
|
||||||
pass
|
ref_audio_opt.convert_from_list(text_list_input, ref_audio_all)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
text_convert_from_list_info = f"发生异常:{e}"
|
text_convert_from_list_info = f"发生异常:{e}"
|
||||||
text_sample_dir = ''
|
text_sample_dir = ''
|
||||||
@ -69,7 +73,8 @@ def model_inference(text_work_space_dir, text_character, text_model_inference_vo
|
|||||||
raise Exception(i18n("文本参数名不能为空"))
|
raise Exception(i18n("文本参数名不能为空"))
|
||||||
if text_test_content is None or text_test_content == '':
|
if text_test_content is None or text_test_content == '':
|
||||||
raise Exception(i18n("待推理文本路径不能为空"))
|
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("参考音频路径/文本和角色情绪二选一填写,不能全部为空"))
|
raise Exception(i18n("参考音频路径/文本和角色情绪二选一填写,不能全部为空"))
|
||||||
pass
|
pass
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
|
0
Ref_Audio_Selector/tool/__init__.py
Normal file
0
Ref_Audio_Selector/tool/__init__.py
Normal file
46
Ref_Audio_Selector/tool/ref_audio_opt.py
Normal file
46
Ref_Audio_Selector/tool/ref_audio_opt.py
Normal file
@ -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.")
|
Loading…
x
Reference in New Issue
Block a user