Suburst commited on
Commit
ca60358
·
verified ·
1 Parent(s): f85e31e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -8
app.py CHANGED
@@ -56,13 +56,8 @@ Although the YOLOv5 model supports up to 80 classes, my project is primarily foc
56
  </div>
57
  """)
58
 
59
- gr.HTML("""
60
- <div style="display: flex; justify-content: center;">
61
- <video width="720" height="435" controls>
62
- <source src="DDMDeepsort1.mp4" type="video/mp4">
63
- Your browser does not support the video tag.
64
- </video>
65
- </div>
66
- """)
67
 
68
  demo.launch()
 
56
  </div>
57
  """)
58
 
59
+ with gr.Row():
60
+ with gr.Column(scale=1):
61
+ gr.Video(value="DDMDeepsort1.mp4", label="Demo Video", width=720, height=435)
 
 
 
 
 
62
 
63
  demo.launch()