Files
webrtc/index.html
2016-02-09 19:08:07 +09:00

22 lines
575 B
HTML

<html>
<head>
<script type="text/javascript" src="client/request.js"></script>
<script type="text/javascript" src="client/webrtc.js"></script>
</head>
<body>
<video id="localVideo" autoplay muted style="width:45%; border='3'"></video>
<video id="remoteVideo" autoplay style="width:45%; border='3'"></video>
<br />
<input type="button" id="start" onclick="start(true)" value="Connect"></input>
<script type="text/javascript">
var request = new Request();
var channel = request.getParameter('ch');
pageReady(channel);
</script>
</body>
</html>