fffiloni commited on
Commit
df7c985
1 Parent(s): 6c50c01

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -128,9 +128,10 @@ with gr.Blocks(css=css) as demo:
128
 
129
  with gr.Column():
130
  prompt_in = gr.Textbox(label="Music description", value="A laid-back blues shuffle with a relaxed tempo, warm guitar tones, and a comfortable groove, perfect for a slow dance or a night in. Instruments: electric guitar, bass, drums.")
131
- chords = gr.Textbox(label="Chords progression", value='C G A:min F')
132
- duration = gr.Slider(label="Sample duration", minimum=4, maximum=30, step=1, value=30)
133
- bpms = gr.Slider(label="BPMs", minimum=50, maximum=220, step=1, value=120)
 
134
  submit_btn = gr.Button("Submit")
135
  wav_out = gr.Audio(label="Wav Result")
136
  with gr.Row():
 
128
 
129
  with gr.Column():
130
  prompt_in = gr.Textbox(label="Music description", value="A laid-back blues shuffle with a relaxed tempo, warm guitar tones, and a comfortable groove, perfect for a slow dance or a night in. Instruments: electric guitar, bass, drums.")
131
+ with gr.Row():
132
+ chords = gr.Textbox(label="Chords progression", value='C G A:min F')
133
+ duration = gr.Slider(label="Sample duration", minimum=4, maximum=30, step=1, value=30)
134
+ bpms = gr.Slider(label="BPMs", minimum=50, maximum=220, step=1, value=120)
135
  submit_btn = gr.Button("Submit")
136
  wav_out = gr.Audio(label="Wav Result")
137
  with gr.Row():