SephStanek commited on
Commit
793d592
·
verified ·
1 Parent(s): 9ee2c85

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -4
app.py CHANGED
@@ -369,19 +369,20 @@ async def run_analysis(audio_file):
369
 
370
 
371
 
372
- # ---------------------------------------------------------
373
  # UI
374
- # ---------------------------------------------------------
375
- with gr.Blocks(theme="soft") as demo:
376
 
377
  gr.HTML("""
378
  <div style='text-align:center; padding:20px;'>
379
  <img src='logo.jpg' style='width:140px; margin-bottom:10px;'/>
380
- <h1 style='font-size:36px; font-weight:800;'>👏 Tour de Fierce Audio Clapback Engine™</h1>
381
  <p style='color:#666;'>AI Detector • Autotune Detector • Key & BPM • Forensic Reporting</p>
382
  </div>
383
  """)
384
 
 
385
  with gr.Row():
386
  audio_in = gr.Audio(type="filepath", label="Upload audio")
387
  run_btn = gr.Button("Run Clapback 👏", variant="primary")
 
369
 
370
 
371
 
372
+ # --------------------------------------------------------------
373
  # UI
374
+ # --------------------------------------------------------------
375
+ with gr.Blocks() as demo:
376
 
377
  gr.HTML("""
378
  <div style='text-align:center; padding:20px;'>
379
  <img src='logo.jpg' style='width:140px; margin-bottom:10px;'/>
380
+ <h1 style='font-size:36px; font-weight:800;'>👋 Tour de Fierce Audio Clapback Engine™</h1>
381
  <p style='color:#666;'>AI Detector • Autotune Detector • Key & BPM • Forensic Reporting</p>
382
  </div>
383
  """)
384
 
385
+
386
  with gr.Row():
387
  audio_in = gr.Audio(type="filepath", label="Upload audio")
388
  run_btn = gr.Button("Run Clapback 👏", variant="primary")