blob: e1dc5294e78854ae0a502c66f699dd073baa1526 [file]
<!DOCTYPE html>
<html>
<video id="video" height="720" width="1024" onclick="this.play()" />
<script>
let file = new URLSearchParams(window.location.search).get("file");
document.getElementById("video").src = "videos/" + file
</script>
</html>