Spaces:
Runtime error
Runtime error
Update run.py
Browse files
run.py
CHANGED
@@ -67,9 +67,9 @@ def downloader(video_url, audio_format, audio_name):
|
|
67 |
with gr.Blocks() as demo:
|
68 |
gr.Markdown("# YouTube Downloader 2.0")
|
69 |
with gr.Row():
|
70 |
-
video_url = gr.Textbox(
|
71 |
-
audio_name = gr.Textbox(
|
72 |
-
audio_format = gr.Radio(["wav", "flac", "mp3"], label="Select the output format")
|
73 |
with gr.Row():
|
74 |
output = gr.Audio(label="Output")
|
75 |
with gr.Row():
|
|
|
67 |
with gr.Blocks() as demo:
|
68 |
gr.Markdown("# YouTube Downloader 2.0")
|
69 |
with gr.Row():
|
70 |
+
video_url = gr.Textbox(placeholder="https://youtu.be/yQBGdXGCUbA?si=7avvqH-6OOkGWqFm", label="YouTube video link")
|
71 |
+
audio_name = gr.Textbox(placeholder="killshot", label="Audio name of YouTube audio")
|
72 |
+
audio_format = gr.Radio(["wav", "flac", "mp3"], label="Select the output format", value=" wav")
|
73 |
with gr.Row():
|
74 |
output = gr.Audio(label="Output")
|
75 |
with gr.Row():
|