Skip to content

Commit

Permalink
feat: Update carousel videos and remove unnecessary files
Browse files Browse the repository at this point in the history
- Deleted `static/videos/banner_video.mp4`
- Added new videos: `compressed-basketball_sideview.mp4`, `compressed-soccer_topview.mp4`, `compressed-handball_sideview.mp4`, `compressed-basketball_topview.mp4`, `compressed-soccer_sideview.mp4`, `compressed-basketball_sideview-2.mp4` to the `static/videos` directory
- Updated `index.html`:
  • Loading branch information
AtomScott committed Jul 3, 2023
1 parent 23729dc commit fa8d846
Show file tree
Hide file tree
Showing 11 changed files with 55 additions and 12 deletions.
67 changes: 55 additions & 12 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,7 @@
content="TeamTrack presents a new algorithm and dataset for multi-object tracking in team sports. It includes over 4 million annotated bounding boxes and provides a comprehensive resource for developing and evaluating MOT algorithms."
/>
<!-- TODO: Path to banner image, should be in the path listed below. Optimal dimenssions are 1200X600-->
<meta
name="twitter:image"
content="static/images/banner_image.png"
/>
<meta name="twitter:image" content="static/images/banner_image.png" />
<meta name="twitter:card" content="summary_large_image" />
<!-- Keywords for your paper to be indexed by-->
<meta
Expand Down Expand Up @@ -336,7 +333,11 @@ <h2 class="title is-3">Video Presentation</h2>
<section class="hero is-small">
<div class="hero-body">
<div class="container">
<h2 class="title is-3">Another Carousel</h2>
<h2 class="title is-3">TeamTrack Datasets</h2>
<h3>
<sup>*</sup>The videos are shown are compressed and resized for the
website.
</h3>
<div id="results-carousel" class="carousel results-carousel">
<div class="item item-video1">
<video
Expand All @@ -348,8 +349,11 @@ <h2 class="title is-3">Another Carousel</h2>
loop
height="100%"
>
<!-- Your video file here -->
<source src="static/videos/carousel1.mp4" type="video/mp4" />
<!-- Basketball sideview video -->
<source
src="static/videos/compressed-basketball_sideview.mp4"
type="video/mp4"
/>
</video>
</div>
<div class="item item-video2">
Expand All @@ -362,8 +366,11 @@ <h2 class="title is-3">Another Carousel</h2>
loop
height="100%"
>
<!-- Your video file here -->
<source src="static/videos/carousel2.mp4" type="video/mp4" />
<!-- Handball sideview video -->
<source
src="static/videos/compressed-handball_sideview.mp4"
type="video/mp4"
/>
</video>
</div>
<div class="item item-video3">
Expand All @@ -376,9 +383,45 @@ <h2 class="title is-3">Another Carousel</h2>
loop
height="100%"
>
\
<!-- Your video file here -->
<source src="static/videos/carousel3.mp4" type="video/mp4" />
<!-- Soccer sideview video -->
<source
src="static/videos/compressed-soccer_sideview.mp4"
type="video/mp4"
/>
</video>
</div>
<div class="item item-video4">
<video
poster=""
id="video4"
autoplay
controls
muted
loop
height="100%"
>
<!-- Basketball topview video -->
<source
src="static/videos/compressed-basketball_topview.mp4"
type="video/mp4"
/>
</video>
</div>
<div class="item item-video5">
<video
poster=""
id="video5"
autoplay
controls
muted
loop
height="100%"
>
<!-- Soccer topview video -->
<source
src="static/videos/compressed-soccer_topview.mp4"
type="video/mp4"
/>
</video>
</div>
</div>
Expand Down
Binary file removed static/videos/banner_video.mp4
Binary file not shown.
Binary file removed static/videos/carousel1.mp4
Binary file not shown.
Binary file removed static/videos/carousel2.mp4
Binary file not shown.
Binary file removed static/videos/carousel3.mp4
Binary file not shown.
Binary file not shown.
Binary file added static/videos/compressed-basketball_sideview.mp4
Binary file not shown.
Binary file added static/videos/compressed-basketball_topview.mp4
Binary file not shown.
Binary file added static/videos/compressed-handball_sideview.mp4
Binary file not shown.
Binary file added static/videos/compressed-soccer_sideview.mp4
Binary file not shown.
Binary file added static/videos/compressed-soccer_topview.mp4
Binary file not shown.

0 comments on commit fa8d846

Please sign in to comment.