Spaces:
Running
Running
Added video
Browse files
app.py
CHANGED
@@ -236,6 +236,18 @@ with gr.Blocks() as demo:
|
|
236 |
</ul>
|
237 |
"""
|
238 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
239 |
|
240 |
|
241 |
with gr.Row():
|
|
|
236 |
</ul>
|
237 |
"""
|
238 |
)
|
239 |
+
|
240 |
+
|
241 |
+
youtube_id = "7CAjgSwHbuk"
|
242 |
+
video_html = f"""
|
243 |
+
<div style="display: flex; justify-content: center;">
|
244 |
+
<iframe width="560" height="315"
|
245 |
+
src="https://www.youtube.com/embed/{youtube_id}"
|
246 |
+
frameborder="0"
|
247 |
+
allowfullscreen></iframe>
|
248 |
+
</div>
|
249 |
+
"""
|
250 |
+
gr.HTML(video_html)
|
251 |
|
252 |
|
253 |
with gr.Row():
|