Spaces:
Sleeping
Sleeping
File size: 3,872 Bytes
ae79826 d2b7e94 ae79826 d2b7e94 ae79826 1df74c6 ae79826 bed01bd ae79826 bed01bd ae79826 bf13828 ae79826 bed01bd ae79826 1df74c6 bed01bd 1df74c6 ae79826 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 |
import gradio as gr
from modules.webui import webui_config
from modules.webui.webui_utils import synthesize_ssml
def create_ssml_interface():
with gr.Row():
with gr.Column(scale=1):
with gr.Group():
gr.Markdown("🎛️Parameters")
# batch size
batch_size_input = gr.Slider(
label="Batch Size",
value=4,
minimum=1,
maximum=webui_config.max_batch_size,
step=1,
)
with gr.Group():
gr.Markdown("🎛️Spliter")
eos_input = gr.Textbox(
label="eos",
value="[uv_break]",
)
spliter_thr_input = gr.Slider(
label="Spliter Threshold",
value=100,
minimum=50,
maximum=1000,
step=1,
)
with gr.Group():
gr.Markdown("🎛️Adjuster")
# 调节 speed pitch volume
# 可以选择开启 响度均衡
speed_input = gr.Slider(
label="Speed",
value=1.0,
minimum=0.5,
maximum=2.0,
step=0.1,
)
pitch_input = gr.Slider(
label="Pitch",
value=0,
minimum=-12,
maximum=12,
step=0.1,
)
volume_up_input = gr.Slider(
label="Volume Gain",
value=0,
minimum=-12,
maximum=12,
step=0.1,
)
enable_loudness_normalization = gr.Checkbox(
value=True,
label="Enable Loudness EQ",
)
headroom_input = gr.Slider(
label="Headroom",
value=1,
minimum=0,
maximum=12,
step=0.1,
)
with gr.Group():
gr.Markdown("💪🏼Enhance")
enable_enhance = gr.Checkbox(value=True, label="Enable Enhance")
enable_de_noise = gr.Checkbox(value=False, label="Enable De-noise")
with gr.Column(scale=3):
with gr.Group():
gr.Markdown("📝SSML Input")
gr.Markdown("SSML_TEXT_GUIDE")
ssml_input = gr.Textbox(
label="SSML Input",
lines=10,
value=webui_config.localization.DEFAULT_SSML_TEXT,
placeholder="输入 SSML 或选择示例",
elem_id="ssml_input",
show_label=False,
)
ssml_button = gr.Button("🔊Synthesize SSML", variant="primary")
with gr.Group():
gr.Markdown("🎄Examples")
gr.Examples(
examples=webui_config.localization.ssml_examples,
inputs=[ssml_input],
)
with gr.Group():
gr.Markdown("🎨Output")
ssml_output = gr.Audio(label="Generated Audio", format="mp3")
ssml_button.click(
synthesize_ssml,
inputs=[
ssml_input,
batch_size_input,
enable_enhance,
enable_de_noise,
eos_input,
spliter_thr_input,
pitch_input,
speed_input,
volume_up_input,
enable_loudness_normalization,
headroom_input,
],
outputs=ssml_output,
)
return ssml_input
|