juan-op commited on
Commit
df525fa
·
1 Parent(s): 7e2338d

Minor changes

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -48,15 +48,15 @@ def execute_pipeline(url: str) -> str:
48
 
49
  def main() -> None:
50
  """Generates the Gradio interface."""
51
- with gr.Blocks(analytics_enabled=True, title="Resume un video") as page:
52
- gr.HTML('<h2 style="text-align:center"><span style="font-size:36px">Resume un video de <strong>Youtube</strong></span></h2>')
53
- url = gr.Textbox(label="Introduce el link del video:")
54
  title = gr.Markdown()
55
- output = gr.Textbox(label="Resumen")
56
- summarize_btn = gr.Button("Dale").style(full_width=False)
57
  summarize_btn.click(fn=get_title, inputs=url, outputs=title)
58
  summarize_btn.click(fn=execute_pipeline, inputs=url, outputs=output)
59
- gr.Markdown("*Funciona mejor con vídeos en inglés y de menos de 10 minutos.*")
60
 
61
  page.launch()
62
 
 
48
 
49
  def main() -> None:
50
  """Generates the Gradio interface."""
51
+ with gr.Blocks(analytics_enabled=True, title="Summarize a video") as page:
52
+ gr.HTML('<h2 style="text-align:center"><span style="font-size:36px">Summarize a <strong>Youtube</strong> video</span></h2>')
53
+ url = gr.Textbox(label="Enter the URL:")
54
  title = gr.Markdown()
55
+ output = gr.Textbox(label="Summary")
56
+ summarize_btn = gr.Button("Go!").style(full_width=False)
57
  summarize_btn.click(fn=get_title, inputs=url, outputs=title)
58
  summarize_btn.click(fn=execute_pipeline, inputs=url, outputs=output)
59
+ gr.Markdown("*Works best with videos under 10 minutes. It usually takes around 2-3 minutes to execute.*")
60
 
61
  page.launch()
62