vinni1484 commited on
Commit
4bc0596
1 Parent(s): 4c9dee9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -42,7 +42,7 @@ def process_song(url):
42
 
43
  iface = gr.Interface(
44
  fn=process_song,
45
- inputs=gr.inputs.Text(placeholder="Enter Spotify URL", label="Song"),
46
- outputs=gr.outputs.Audio(label="Karaoke audio"),
47
  )
48
  iface.launch()
 
42
 
43
  iface = gr.Interface(
44
  fn=process_song,
45
+ inputs=gr.Textbox(placeholder="Enter the Spotify URL", label="Song"),
46
+ outputs=gr.Audio(label="Karaoke audio"),
47
  )
48
  iface.launch()