Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -201,7 +201,7 @@ with gr.Blocks(css='style.css') as demo:
|
|
| 201 |
with gr.Group():
|
| 202 |
gr.Markdown("💡 **note**: input longer than **30 sec** is automatically trimmed (for unlimited input you may duplicate the space)")
|
| 203 |
with gr.Row():
|
| 204 |
-
input_audio = gr.Audio(sources=["upload", "microphone"], type="filepath", label="Input Audio",
|
| 205 |
interactive=True, scale=1)
|
| 206 |
output_audio = gr.Audio(label="Edited Audio", interactive=False, scale=1)
|
| 207 |
|
|
|
|
| 201 |
with gr.Group():
|
| 202 |
gr.Markdown("💡 **note**: input longer than **30 sec** is automatically trimmed (for unlimited input you may duplicate the space)")
|
| 203 |
with gr.Row():
|
| 204 |
+
input_audio = gr.Audio(sources=["upload", "microphone"], type="filepath", editable=False, label="Input Audio",
|
| 205 |
interactive=True, scale=1)
|
| 206 |
output_audio = gr.Audio(label="Edited Audio", interactive=False, scale=1)
|
| 207 |
|