mirror of
https://github.com/RVC-Boss/GPT-SoVITS.git
synced 2025-10-08 07:49:59 +08:00
change the default loudness
This commit is contained in:
parent
87a7997454
commit
326f2577f0
4
webui.py
4
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")
|
min_interval=gr.Textbox(label=i18n("min_interval:最短切割间隔"),value="0.3")
|
||||||
max_sil_kept=gr.Textbox(label=i18n("max_sil_kept:切完后静音最多留多长"),value="0.5")
|
max_sil_kept=gr.Textbox(label=i18n("max_sil_kept:切完后静音最多留多长"),value="0.5")
|
||||||
hop_size=gr.Textbox(label=i18n("hop_size:怎么算音量曲线,越小精度越大计算量越高(不是精度越大效果越好)"),value="10")
|
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():
|
with gr.Row():
|
||||||
loudness=gr.Textbox(label=i18n("目标响度"),value="-18")
|
loudness=gr.Textbox(label=i18n("目标响度"),value="-21")
|
||||||
peak=gr.Textbox(label=i18n("峰值响度"),value="-1")
|
peak=gr.Textbox(label=i18n("峰值响度"),value="-1")
|
||||||
if_loudness_norm = gr.Checkbox(label=i18n("是否匹配响度"),show_label=True,value=True)
|
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)
|
num_worker=gr.Slider(minimum=1,maximum=n_cpu,step=1,label=i18n("切割使用的进程数"),value=4,interactive=True)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user