-
-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4e76302
commit 630cae1
Showing
8 changed files
with
327 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<script setup lang="ts"></script> | ||
|
||
<template> | ||
<div> | ||
Pre-render Video Discovery Page | ||
|
||
<!-- Control Video with src, should auto-discover --> | ||
<video | ||
controls | ||
src="https://archive.org/download/BigBuckBunny_124/Content/big_buck_bunny_720p_surround.mp4" | ||
poster="https://archive.org/download/BigBuckBunny_124/__ia_thumb.jpg" | ||
width="620" | ||
data-title="Big Buck Bunny" | ||
data-description="Big Buck Bunny in DivX 720p." | ||
> | ||
Sorry, your browser doesn't support embedded videos, but don't worry, you | ||
can | ||
<a href="https://archive.org/details/BigBuckBunny_124">download it</a> | ||
and watch it with your favorite video player! | ||
</video> | ||
|
||
<!-- Control Video with source, should auto-discover --> | ||
<video | ||
controls | ||
poster="https://archive.org/download/DuckAndCover_185/__ia_thumb.jpg" | ||
width="620" | ||
data-title="Duck and Cover" | ||
data-description="This film, a combination of animated cartoon and live action, shows young children what to do in case of an atomic attack." | ||
> | ||
<source | ||
src="https://archive.org/download/DuckAndCover_185/CivilDefenseFilm-DuckAndCoverColdWarNuclearPropaganda_512kb.mp4" | ||
type="video/mp4" | ||
/> | ||
<source | ||
src="https://archive.org/download/DuckAndCover_185/CivilDefenseFilm-DuckAndCoverColdWarNuclearPropaganda.avi" | ||
type="video/x-msvideo" | ||
/> | ||
Sorry, your browser doesn't support embedded videos, but don't worry, you | ||
can | ||
<a href="https://archive.org/details/DuckAndCover_185">download it</a> | ||
and watch it with your favorite video player! | ||
</video> | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.