Illia56 commited on
Commit
de63ea3
1 Parent(s): d63ae8a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -43,7 +43,7 @@ yt_transcribe = gr.Interface(
43
  outputs=[gr.outputs.HTML(label="Video"),
44
  gr.outputs.Textbox(label="Transcription").style(show_copy_button=True)],
45
  layout="horizontal",
46
- theme="huggingface",
47
  title="Whisper Large V2: Transcribe YouTube",
48
  description=(
49
  "Transcribe long-form YouTube videos with the click of a button! Demo uses the checkpoint"
@@ -56,6 +56,7 @@ yt_transcribe = gr.Interface(
56
  )
57
 
58
  with demo:
 
59
  gr.TabbedInterface([yt_transcribe], [ "YouTube"])
60
 
61
  demo.launch(enable_queue=True)
 
43
  outputs=[gr.outputs.HTML(label="Video"),
44
  gr.outputs.Textbox(label="Transcription").style(show_copy_button=True)],
45
  layout="horizontal",
46
+ theme=gr.themes.Base(),
47
  title="Whisper Large V2: Transcribe YouTube",
48
  description=(
49
  "Transcribe long-form YouTube videos with the click of a button! Demo uses the checkpoint"
 
56
  )
57
 
58
  with demo:
59
+ gr.DuplicateButton()
60
  gr.TabbedInterface([yt_transcribe], [ "YouTube"])
61
 
62
  demo.launch(enable_queue=True)