Update app.py
Browse files
app.py
CHANGED
@@ -189,14 +189,14 @@ with gr.Blocks(css=css, theme=gr.themes.Soft()) as demo:
|
|
189 |
# Basic Input: Text prompt
|
190 |
with gr.Row():
|
191 |
gt_file_input = gr.Audio(
|
192 |
-
label="Upload Audio
|
193 |
type="filepath",
|
194 |
value="demo/0_mix.wav"
|
195 |
)
|
196 |
|
197 |
with gr.Row(equal_height=True):
|
198 |
text_input = gr.Textbox(
|
199 |
-
label="The
|
200 |
show_label=True,
|
201 |
max_lines=2,
|
202 |
placeholder="Enter your prompt",
|
@@ -207,7 +207,7 @@ with gr.Blocks(css=css, theme=gr.themes.Soft()) as demo:
|
|
207 |
run_button = gr.Button("Extract", scale=1)
|
208 |
|
209 |
# Output Component
|
210 |
-
result = gr.Audio(label="Extracted Audio", type="numpy")
|
211 |
|
212 |
# Advanced settings in an Accordion
|
213 |
with gr.Accordion("Advanced Settings", open=False):
|
|
|
189 |
# Basic Input: Text prompt
|
190 |
with gr.Row():
|
191 |
gt_file_input = gr.Audio(
|
192 |
+
label="Upload Audio Mixture",
|
193 |
type="filepath",
|
194 |
value="demo/0_mix.wav"
|
195 |
)
|
196 |
|
197 |
with gr.Row(equal_height=True):
|
198 |
text_input = gr.Textbox(
|
199 |
+
label="Describe The Sound You Want to Extract",
|
200 |
show_label=True,
|
201 |
max_lines=2,
|
202 |
placeholder="Enter your prompt",
|
|
|
207 |
run_button = gr.Button("Extract", scale=1)
|
208 |
|
209 |
# Output Component
|
210 |
+
result = gr.Audio(label="Extracted Audio Stem", type="numpy")
|
211 |
|
212 |
# Advanced settings in an Accordion
|
213 |
with gr.Accordion("Advanced Settings", open=False):
|