Files
go2rtc/www/mse.html
T
2022-11-24 01:59:48 +03:00

29 lines
647 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>go2rtc - MSE</title>
<script src="video-rtc.js"></script>
<style>
body {
background: black;
margin: 0;
padding: 0;
}
html, body, video {
height: 100%;
width: 100%;
}
</style>
</head>
<body>
<script>
const url = new URL("api/ws" + location.search, location.href);
const video = document.createElement("video-rtc");
video.src = url.toString();
document.body.appendChild(video);
</script>
</body>
</html>