Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -19,7 +19,24 @@ def generate_summary(url):
|
|
19 |
summary = "\n".join(results)
|
20 |
return summary
|
21 |
|
22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
fn=generate_summary,
|
24 |
inputs=gr.Textbox(lines=2, placeholder="Enter your URL..."),
|
25 |
outputs=gr.Textbox(label="Generated Text"),
|
@@ -27,6 +44,9 @@ demo = gr.Interface(
|
|
27 |
description="Enter the URL to summarize and click 'Submit' to generate the summary."
|
28 |
)
|
29 |
|
|
|
|
|
|
|
30 |
demo.launch(share=True)
|
31 |
|
32 |
|
|
|
19 |
summary = "\n".join(results)
|
20 |
return summary
|
21 |
|
22 |
+
|
23 |
+
def get_youtube_video(url):
|
24 |
+
try:
|
25 |
+
video_id = url.split("v=")[1].split("&")[0]
|
26 |
+
iframe = f'<iframe width="560" height="315" src="https://www.youtube.com/embed/{video_id}" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>'
|
27 |
+
return iframe
|
28 |
+
except IndexError:
|
29 |
+
return "Invalid YouTube URL"
|
30 |
+
|
31 |
+
video_interface = gr.Interface(
|
32 |
+
fn=get_youtube_video,
|
33 |
+
inputs=gr.Textbox(lines=2, placeholder="Enter YouTube URL..."),
|
34 |
+
outputs=gr.HTML(label="YouTube Video"),
|
35 |
+
title="YouTube Video Display",
|
36 |
+
description="Enter the YouTube URL to display the video."
|
37 |
+
)
|
38 |
+
|
39 |
+
summary_interface = gr.Interface(
|
40 |
fn=generate_summary,
|
41 |
inputs=gr.Textbox(lines=2, placeholder="Enter your URL..."),
|
42 |
outputs=gr.Textbox(label="Generated Text"),
|
|
|
44 |
description="Enter the URL to summarize and click 'Submit' to generate the summary."
|
45 |
)
|
46 |
|
47 |
+
demo = gr.TabbedInterface([summary_interface, video_interface], ["Summary Generator", "YouTube Video Info"])
|
48 |
+
|
49 |
+
|
50 |
demo.launch(share=True)
|
51 |
|
52 |
|