jpjp9292 commited on
Commit
d9c3b94
1 Parent(s): 3cefd70

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -20,8 +20,8 @@ def mp4_to_mp3_converter(video_file):
20
 
21
  iface = gr.Interface(
22
  fn=mp4_to_mp3_converter,
23
- inputs=gr.inputs.File(label="Input Video"),
24
- outputs=gr.outputs.File(label="Output Audio"),
25
  title="MP4 to MP3 Converter",
26
  description="Upload a video file to convert it to MP3 format."
27
  )
 
20
 
21
  iface = gr.Interface(
22
  fn=mp4_to_mp3_converter,
23
+ inputs=gr.File(label="Input Video"),
24
+ outputs=gr.File(label="Output Audio"),
25
  title="MP4 to MP3 Converter",
26
  description="Upload a video file to convert it to MP3 format."
27
  )