Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -488,7 +488,11 @@ def process_audio(uploaded_file, link):
|
|
488 |
with gr.Blocks() as demo:
|
489 |
gr.Markdown("# Music Player and Processor")
|
490 |
|
491 |
-
youtube_url = gr.Textbox(
|
|
|
|
|
|
|
|
|
492 |
file_upload = gr.File(label="Upload MP3 file", file_types=[".mp3"])
|
493 |
process_button = gr.Button("Process Audio")
|
494 |
log_output = gr.Textbox(label="Processing Log", interactive=False)
|
|
|
488 |
with gr.Blocks() as demo:
|
489 |
gr.Markdown("# Music Player and Processor")
|
490 |
|
491 |
+
youtube_url = gr.Textbox(
|
492 |
+
label="YouTube Song URL",
|
493 |
+
placeholder="This feature is currently disabled. You cannot input a URL.",
|
494 |
+
interactive=False
|
495 |
+
)
|
496 |
file_upload = gr.File(label="Upload MP3 file", file_types=[".mp3"])
|
497 |
process_button = gr.Button("Process Audio")
|
498 |
log_output = gr.Textbox(label="Processing Log", interactive=False)
|