Awell00 commited on
Commit
1f8480b
·
verified ·
1 Parent(s): bbb11fa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
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(label="URL Youtube Song")
 
 
 
 
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)