Add meme video page relating to a soap skeet
Source: https://bsky.app/profile/did:plc:lghfd7elj6cjjwlhecp2utao/post/3ll7hx7diu22d https://web.archive.org/web/20250325154433/https://bsky.app/profile/did:plc:lghfd7elj6cjjwlhecp2utao/post/3ll7hx7diu22d
This commit is contained in:
parent
c3970dca5b
commit
0bb8b1c16a
14 changed files with 158 additions and 55 deletions
|
@ -14,6 +14,7 @@ const pageTitle = "A bunch of other pages!";
|
|||
<ul class=" list-disc px-8">
|
||||
<li><a href="/jxl-testing">JpegXL Decoder Test</a></li>
|
||||
<li><a href="/other buttons">Extra 88x31 buttons</a></li>
|
||||
<li><a href="/extreme-format-test">Goofy video format test</a></li>
|
||||
</ul>
|
||||
</Partition>
|
||||
</BaseLayout>
|
||||
|
|
73
src/pages/extreme-format-test.astro
Normal file
73
src/pages/extreme-format-test.astro
Normal file
|
@ -0,0 +1,73 @@
|
|||
---
|
||||
import FriendLink from "../components/FriendLink.astro";
|
||||
import "../styles/aria.css";
|
||||
import Partition from "../components/Partition.astro";
|
||||
import BaseLayout from "../layouts/BaseLayout.astro";
|
||||
|
||||
const pageTitle = "Extreme partition test";
|
||||
const description = "All of Aria's friends with 88x31 buttons for you to click on!!";
|
||||
---
|
||||
|
||||
<BaseLayout pageTitle={pageTitle}>
|
||||
<Partition>
|
||||
<h3 class="text-xl font-bold text-center">"All In One"</h3>
|
||||
<video controls preload="metadata">
|
||||
<source src="/static/videos/extreme-format-test/TOTK60-web-av1.mp4" type="video/mp4; codecs=av01" />
|
||||
<source src="/static/videos/extreme-format-test/TOTK60-web-x265.mp4" type="video/mp4" />
|
||||
<source src="/static/videos/extreme-format-test/TOTK60-web-vp9.mp4" type="video/mp4; codecs=vp9" />
|
||||
<source src="/static/videos/extreme-format-test/TOTK60-web-x264.mp4" type="video/mp4; codecs=avc1.4d002a" />
|
||||
<source src="/static/videos/extreme-format-test/TOTK60-web-theora.ogg" type="video/ogg; codecs=theora" />
|
||||
<source src="/static/videos/extreme-format-test/TOTK60-web-mpeg4.mp4" type="video/mp4" />
|
||||
<source src="/static/videos/extreme-format-test/TOTK60-web-mpeg4.avi" type="video/avi" />
|
||||
<source src="/static/videos/extreme-format-test/TOTK60-web-mpeg2.mp4" type="video/mp4" />
|
||||
</video>
|
||||
</Partition>
|
||||
<Partition>
|
||||
<h3 class="text-xl font-bold text-center">AV1</h3>
|
||||
<video controls preload="metadata">
|
||||
<source src="/static/videos/extreme-format-test/TOTK60-web-av1.mp4" type="video/mp4; codecs=av1" />
|
||||
</video>
|
||||
</Partition>
|
||||
<Partition>
|
||||
<h3 class="text-xl font-bold text-center">X265</h3>
|
||||
<video controls preload="metadata">
|
||||
<source src="/static/videos/extreme-format-test/TOTK60-web-x265.mp4" type="video/mp4" />
|
||||
</video>
|
||||
</Partition>
|
||||
<Partition>
|
||||
<h3 class="text-xl font-bold text-center">VP9</h3>
|
||||
<video controls preload="metadata">
|
||||
<source src="/static/videos/extreme-format-test/TOTK60-web-vp9.mp4" type="video/mp4; codecs=vp9" />
|
||||
</video>
|
||||
</Partition>
|
||||
<Partition>
|
||||
<h3 class="text-xl font-bold text-center">X264</h3>
|
||||
<video controls preload="metadata">
|
||||
<source src="/static/videos/extreme-format-test/TOTK60-web-x264.mp4" type="video/mp4; codecs=avc1.4d002a" />
|
||||
</video>
|
||||
</Partition>
|
||||
<Partition>
|
||||
<h3 class="text-xl font-bold text-center">Theora</h3>
|
||||
<video controls preload="metadata">
|
||||
<source src="/static/videos/extreme-format-test/TOTK60-web-theora.ogg" type="video/ogg; codecs=theora" />
|
||||
</video>
|
||||
</Partition>
|
||||
<Partition>
|
||||
<h3 class="text-xl font-bold text-center">MPEG4 (MP4)</h3>
|
||||
<video controls preload="metadata">
|
||||
<source src="/static/videos/extreme-format-test/TOTK60-web-mpeg4.mp4" type="video/mp4" />
|
||||
</video>
|
||||
</Partition>
|
||||
<Partition>
|
||||
<h3 class="text-xl font-bold text-center">MPEG4 (AVI)</h3>
|
||||
<video controls preload="metadata">
|
||||
<source src="/static/videos/extreme-format-test/TOTK60-web-mpeg4.avi" type="video/avi" />
|
||||
</video>
|
||||
</Partition>
|
||||
<Partition>
|
||||
<h3 class="text-xl font-bold text-center">MPEG2</h3>
|
||||
<video controls preload="metadata">
|
||||
<source src="/static/videos/extreme-format-test/TOTK60-web-mpeg2.mp4" type="video/mp4" />
|
||||
</video>
|
||||
</Partition>
|
||||
</BaseLayout>
|
Loading…
Add table
Add a link
Reference in a new issue