lauraibnz commited on
Commit
78842a2
·
1 Parent(s): b8dcbf5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -59,10 +59,11 @@ with gr.Blocks(title="🎹 MIDI-AudioLDM", theme=gr.themes.Base(text_size=gr.the
59
  """)
60
  with gr.Row():
61
  with gr.Column(variant='panel'):
62
- midi = gr.File(label="midi file", file_types=[".mid"])
 
 
63
  prompt = gr.Textbox(label="prompt", info="Enter a descriptive text prompt to guide the audio generation.")
64
  with gr.Column(variant='panel'):
65
- midi_synth = gr.Audio(label="synthesized midi")
66
  midi.upload(synthesize, inputs=midi, outputs=midi_synth)
67
  audio = gr.Audio(label="generated audio")
68
  with gr.Accordion("Advanced Settings", open=False):
 
59
  """)
60
  with gr.Row():
61
  with gr.Column(variant='panel'):
62
+ midi_synth = gr.Audio(label="synthesized midi")
63
+ upload_button = gr.UploadButton("Upload a MIDI File", file_types=[".mid"])
64
+ upload_button.click(synthesize, upload_button, midi_synth)
65
  prompt = gr.Textbox(label="prompt", info="Enter a descriptive text prompt to guide the audio generation.")
66
  with gr.Column(variant='panel'):
 
67
  midi.upload(synthesize, inputs=midi, outputs=midi_synth)
68
  audio = gr.Audio(label="generated audio")
69
  with gr.Accordion("Advanced Settings", open=False):