Play in browser now works with chromium

This commit is contained in:
bingus_violet 2024-11-06 19:34:05 -06:00
parent a949591f99
commit 4f88beab0a
5 changed files with 564 additions and 266 deletions

View file

@ -0,0 +1,32 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/style.css">
<style>
* {
margin: auto;
padding: 0 !important;
}
body {
width: 100vw;
max-width: 100vw;
padding: 0;
background-color: black;
}
video {
width: 100vw;
max-width: 100%;
max-height: 100%;
}
</style>
<title>Playing video in browser</title>
</head>
<body>
<video controls src="/download{DOWNLOAD_URL}"></video>
</body>
</html>