29 lines
580 B
HTML
29 lines
580 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>WebRTC Stream</title>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="stylesheet" href="css/index.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<header></header>
|
|
<main>
|
|
<h1>Video streams</h1>
|
|
<h2>WebRTC</h2>
|
|
<div class="content">
|
|
<div class="player">
|
|
<video id="video0" autoplay playsinline controls></video>
|
|
<div id="channel-container-0" class="channel-group"></div>
|
|
</div>
|
|
|
|
|
|
</main>
|
|
</div>
|
|
|
|
<script src="js/video.js"></script>
|
|
</body>
|
|
|
|
</html> |