54 lines
1.1 KiB
HTML
54 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>P2P Daisy Chain Livestream</title>
|
|
<style>
|
|
body {
|
|
font-family: sans-serif;
|
|
background: #111;
|
|
color: #fff;
|
|
text-align: center;
|
|
}
|
|
|
|
video {
|
|
width: 80%;
|
|
max-width: 600px;
|
|
background: #000;
|
|
border: 2px solid #333;
|
|
margin: 10px;
|
|
}
|
|
|
|
.controls {
|
|
margin: 20px;
|
|
}
|
|
|
|
button {
|
|
padding: 10px 20px;
|
|
font-size: 16px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
#status {
|
|
color: #0f0;
|
|
margin-top: 10px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Daisy Chain Relay</h1>
|
|
<div class="controls">
|
|
<button id="btnStart" onclick="startStream()">Start Stream (As Head)</button>
|
|
<button id="btnJoin" onclick="joinStream()">Join Stream (As Node)</button>
|
|
</div>
|
|
<video id="localVideo" autoplay muted playsinline></video>
|
|
<video id="remoteVideo" autoplay playsinline></video>
|
|
<div id="status">Status: Disconnected</div>
|
|
<script src="/socket.io/socket.io.js"></script>
|
|
<script src="client.js"></script>
|
|
</body>
|
|
|
|
</html> |