Next commited on
Commit
71706d9
·
verified ·
1 Parent(s): 933dd53

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -21,8 +21,8 @@ with gr.Blocks() as demo:
21
  gr.Markdown("# YouTube Audio/Video Downloader")
22
 
23
  url_input = gr.Textbox(label="YouTube URL")
24
- media_type = gr.Radio(label="Select Media Type", choices=["Audio", "Video"])
25
- output = gr.Textbox(label="Downloaded File")
26
 
27
  download_button = gr.Button("Download")
28
  download_button.click(
 
21
  gr.Markdown("# YouTube Audio/Video Downloader")
22
 
23
  url_input = gr.Textbox(label="YouTube URL")
24
+ media_type = gr.Radio(label="Select Media Type", choices=["Audio", "Video"], value="Audio")
25
+ output = gr.Audio(label="Downloaded File")
26
 
27
  download_button = gr.Button("Download")
28
  download_button.click(