Spaces:
Sleeping
Sleeping
Next
commited on
Update app.py
Browse files
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.
|
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(
|