diff --git a/rvc/infer/infer.py b/rvc/infer/infer.py index 06bc631..8ce9c75 100644 --- a/rvc/infer/infer.py +++ b/rvc/infer/infer.py @@ -23,6 +23,7 @@ os.makedirs(EMBEDDERS_DIR, exist_ok=True) os.makedirs(RVC_MODELS_DIR, exist_ok=True) + # Загружает модель RVC и индекс по имени модели. def load_rvc_model(rvc_model): # Формируем путь к директории модели @@ -142,7 +143,7 @@ def rvc_infer( cpt, version, net_g, tgt_sr, vc = get_vc(model_path) # Загружаем аудиофайл audio = load_audio(input_path, 16000) - + # Формируем имя выходного файла base_name = os.path.splitext(os.path.basename(input_path))[0] output_path = os.path.join(output_dir, f"{base_name}_(Converted).{output_format}") diff --git a/tabs/inference/inference_batch.py b/tabs/inference/inference_batch.py index 2e27633..e857f63 100644 --- a/tabs/inference/inference_batch.py +++ b/tabs/inference/inference_batch.py @@ -107,7 +107,7 @@ def inference_batch_tab(): interactive=True, visible=True, ) - with gr.Column(scale=3): + with gr.Column(scale=3): pitch = gr.Slider( minimum=-24, maximum=24,