Spaces:
Runtime error
Runtime error
juan-op
commited on
Commit
·
df525fa
1
Parent(s):
7e2338d
Minor changes
Browse files
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="
|
52 |
-
gr.HTML('<h2 style="text-align:center"><span style="font-size:36px">
|
53 |
-
url = gr.Textbox(label="
|
54 |
title = gr.Markdown()
|
55 |
-
output = gr.Textbox(label="
|
56 |
-
summarize_btn = gr.Button("
|
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("*
|
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 |
|