Artificial-superintelligence commited on
Commit
6d42786
·
verified ·
1 Parent(s): 88fab8f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -57,10 +57,10 @@ def gradio_interface(url, output_directory):
57
  iface = gr.Interface(
58
  fn=gradio_interface,
59
  inputs=[
60
- gr.inputs.Textbox(label="Enter the YouTube video URL"),
61
- gr.inputs.Textbox(label="Enter the output directory (leave blank for current directory)")
62
  ],
63
- outputs=gr.outputs.Textbox(label="Download Status"),
64
  title="YouTube Video Downloader",
65
  description="Enter a YouTube video URL and optionally specify an output directory to download the video."
66
  )
 
57
  iface = gr.Interface(
58
  fn=gradio_interface,
59
  inputs=[
60
+ gr.Textbox(label="Enter the YouTube video URL"),
61
+ gr.Textbox(label="Enter the output directory (leave blank for current directory)")
62
  ],
63
+ outputs=gr.Textbox(label="Download Status"),
64
  title="YouTube Video Downloader",
65
  description="Enter a YouTube video URL and optionally specify an output directory to download the video."
66
  )