Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -39,6 +39,9 @@ demo = gr.Interface(
|
|
39 |
title=title,
|
40 |
description=description
|
41 |
)
|
|
|
|
|
|
|
42 |
html_content = """
|
43 |
<div style="text-align: center;">
|
44 |
<h1>Welcome to My Video Processing App</h1>
|
@@ -50,6 +53,7 @@ html_content = """
|
|
50 |
"""
|
51 |
with demo:
|
52 |
gr.HTML(html_content)
|
|
|
53 |
|
54 |
demo.launch()
|
55 |
|
|
|
39 |
title=title,
|
40 |
description=description
|
41 |
)
|
42 |
+
|
43 |
+
demo_video = gr.Video(value="DDMDeepsort1.mp4", label="Demo Video")
|
44 |
+
|
45 |
html_content = """
|
46 |
<div style="text-align: center;">
|
47 |
<h1>Welcome to My Video Processing App</h1>
|
|
|
53 |
"""
|
54 |
with demo:
|
55 |
gr.HTML(html_content)
|
56 |
+
demo_video
|
57 |
|
58 |
demo.launch()
|
59 |
|