Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -278,18 +278,18 @@ with gr.Blocks(css=css, theme=gr.themes.Soft()) as demo:
|
|
278 |
with gr.Row():
|
279 |
mixture_input = gr.Audio(label="Upload Mixture Audio",
|
280 |
type="filepath",
|
281 |
-
value="test1.wav")
|
282 |
|
283 |
-
gr.Markdown("**Note:** Upload a short
|
|
|
284 |
with gr.Row(equal_height=True):
|
285 |
enroll_input = gr.Audio(label="Upload Enrollment/Speaker Audio",
|
286 |
type="filepath",
|
287 |
-
value="test1_enroll.wav",
|
288 |
-
scale=4,
|
289 |
)
|
290 |
|
291 |
-
|
292 |
-
extract_button = gr.Button("Extract", variant="primary"
|
293 |
# extract_button = gr.Button("Extract", scale=1)
|
294 |
|
295 |
with gr.Row():
|
|
|
278 |
with gr.Row():
|
279 |
mixture_input = gr.Audio(label="Upload Mixture Audio",
|
280 |
type="filepath",
|
281 |
+
value="examples/test1.wav")
|
282 |
|
283 |
+
# gr.Markdown("**Note:** Upload a short clip with only the target speaker. Some non-speech noise is fine.")
|
284 |
+
|
285 |
with gr.Row(equal_height=True):
|
286 |
enroll_input = gr.Audio(label="Upload Enrollment/Speaker Audio",
|
287 |
type="filepath",
|
288 |
+
value="examples/test1_enroll.wav",
|
|
|
289 |
)
|
290 |
|
291 |
+
with gr.Row():
|
292 |
+
extract_button = gr.Button("Extract", variant="primary")
|
293 |
# extract_button = gr.Button("Extract", scale=1)
|
294 |
|
295 |
with gr.Row():
|