Spaces:
Runtime error
Runtime error
TheStinger
commited on
Commit
•
357443f
1
Parent(s):
1ad3bd6
Update app.py
Browse files
app.py
CHANGED
@@ -23,7 +23,7 @@ def main():
|
|
23 |
create_spec_butt = gr.Button(value='Create Spectrogram And Get Info', variant='primary')
|
24 |
with gr.Column():
|
25 |
output_markdown = gr.Markdown(value="", visible=True)
|
26 |
-
|
27 |
|
28 |
create_spec_butt.click(fn=create_spectrogram_and_get_info, inputs=[audio_input], outputs=[output_markdown, image_output])
|
29 |
|
|
|
23 |
create_spec_butt = gr.Button(value='Create Spectrogram And Get Info', variant='primary')
|
24 |
with gr.Column():
|
25 |
output_markdown = gr.Markdown(value="", visible=True)
|
26 |
+
image_output = gr.Image(type='filepath', interactive=False)
|
27 |
|
28 |
create_spec_butt.click(fn=create_spectrogram_and_get_info, inputs=[audio_input], outputs=[output_markdown, image_output])
|
29 |
|