From 326f2577f02383046f281e00b021477f41b6ec53 Mon Sep 17 00:00:00 2001 From: XXXXRT666 Date: Wed, 10 Apr 2024 23:13:55 +0100 Subject: [PATCH] change the default loudness --- webui.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webui.py b/webui.py index a84f1dd9..3c8c057b 100644 --- a/webui.py +++ b/webui.py @@ -737,9 +737,9 @@ with gr.Blocks(title="GPT-SoVITS WebUI") as app: min_interval=gr.Textbox(label=i18n("min_interval:最短切割间隔"),value="0.3") max_sil_kept=gr.Textbox(label=i18n("max_sil_kept:切完后静音最多留多长"),value="0.5") hop_size=gr.Textbox(label=i18n("hop_size:怎么算音量曲线,越小精度越大计算量越高(不是精度越大效果越好)"),value="10") - if_merge_short = gr.Checkbox(label=i18n("对于过短音频的处理方法,勾选则合并,不勾选则抛弃"),show_label=True) + if_merge_short = gr.Checkbox(label=i18n("对于过短音频的处理方法,勾选则合并,不勾选则抛弃"),show_label=True,value=True) with gr.Row(): - loudness=gr.Textbox(label=i18n("目标响度"),value="-18") + loudness=gr.Textbox(label=i18n("目标响度"),value="-21") peak=gr.Textbox(label=i18n("峰值响度"),value="-1") if_loudness_norm = gr.Checkbox(label=i18n("是否匹配响度"),show_label=True,value=True) num_worker=gr.Slider(minimum=1,maximum=n_cpu,step=1,label=i18n("切割使用的进程数"),value=4,interactive=True)