Use video without subtitles baked in

This commit is contained in:
Korbs 2023-11-06 18:08:59 -05:00
parent f4d0d829b5
commit 548eb0460e
No known key found for this signature in database
2 changed files with 6 additions and 13 deletions

View file

@ -4,15 +4,18 @@
<title>Plyx Player</title>
<link rel="stylesheet" href="/src/styles/app.css">
<script src="/src/index.js" type="module"></script>
<script src="https://kit.fontawesome.com/ecedfeb6bc.js" crossorigin="anonymous"></script>
<script src="/src/icons/fa-kit/js/all.js" crossorigin="anonymous"></script>
</head>
<body>
<p>Plyx Player <span>By SudoVanilla</span></p>
<div class="video-container">
<video class="plyx-player" src="Ennie-and-Yoyki.webm"></video>
<video class="plyx-player" src="ennie yoyki completo-S50_Iv43y_w.webm"></video>
</div>
<div class="video-container">
<video class="plyx-player" src="ennie yoyki completo-S50_Iv43y_w.webm"></video>
</div>
<div class="credits">
<p><a href="https://youtu.be/MuyJtxzyU3o">Ennie and Yoyki: Ungirly Games</a> <span>By Daniyar Yambushev</span></p>
<p><a href="https://youtu.be/MuyJtxzyU3o">Ennie and Yoyki: Ungirly Games</a> <span>By Lenar Mingazov</span></p>
</div>
</body>
</html>
@ -86,14 +89,4 @@ span {
a {
color: white;
}
.video-container {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
max-width: 1800px;
width: calc(100% - 48px);
}
</style>