FileSharer/resources/watch.html

37 lines
1.3 KiB
HTML
Raw Normal View History

2024-02-05 12:35:10 -06:00
<!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">
2024-04-23 11:13:46 -05:00
<link rel="stylesheet" href="/style.css">
2024-02-05 12:35:10 -06:00
2024-02-05 17:21:50 -06:00
<meta property="og:site_name" content="Violet's Clipdump">
<meta property="og:url" content="https://fs.violets-purgatory.dev/watch/{VID_PATH}">
<meta property="og:type" content="video.other">
2024-02-05 17:32:09 -06:00
<meta property="og:title" content="{TITLE} ({VID_INFO})">
2024-02-05 17:27:22 -06:00
<meta property="og:video" content="https://fs.violets-purgatory.dev/{VID_PATH}">
2024-02-05 17:16:02 -06:00
<meta property="og:video:type" content="video/mp4">
2024-02-05 17:27:22 -06:00
<meta property="og:video:secure_url" content="https://fs.violets-purgatory.dev/{VID_PATH}">
2024-02-05 17:16:02 -06:00
<meta property="og:video:height" content="720">
<meta property="og:video:width" content="1280">
2024-02-05 17:21:50 -06:00
2024-02-05 12:35:10 -06:00
<title>{TITLE}</title>
</head>
<body>
<h1>{TITLE}</h1>
<p><a href="{BACK}">Back</a></p>
<p>{VID_INFO}</p>
2024-04-23 13:11:17 -05:00
<p><a href="/download/{VID_PATH}">Download</a>
<br><a href="/{VID_PATH}">Compatibility Video player</a></p>
2024-02-05 12:35:10 -06:00
<div class="fadediv">
2024-02-05 13:22:40 -06:00
<video src="/video/{VID_PATH}" width="100%" controls></video>
2024-02-05 12:35:10 -06:00
</div>
2024-04-23 13:11:17 -05:00
<p class="note">Please note that the video player is unfinished, most commonly having issues on iOS devices.</p>
2024-02-05 12:35:10 -06:00
</body>
</html>