You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.4 KiB
Cheetah
37 lines
1.4 KiB
Cheetah
|
3 years ago
|
<html>
|
||
|
|
<meta http-equiv="Expires" content="0">
|
||
|
|
<meta http-equiv="Last-Modified" content="0">
|
||
|
|
<meta http-equiv="Cache-Control" content="no-cache, mustrevalidate">
|
||
|
|
<meta http-equiv="Pragma" content="no-cache">
|
||
|
|
<link rel="stylesheet" href="../../static/css/bootstrap.min.css">
|
||
|
|
<script type="text/javascript" src="../../static/js/jquery-3.4.1.min.js"></script>
|
||
|
|
<script src="../../static/js/bootstrap.min.js"></script>
|
||
|
|
<script src="../../static/js/adapter-latest.js"></script>
|
||
|
|
|
||
|
|
<h2 align=center>
|
||
|
|
Play Stream {{ .suuid }}
|
||
|
|
</h2>
|
||
|
|
<div class="container">
|
||
|
|
<div class="row">
|
||
|
|
<div class="col-3">
|
||
|
|
<div class="list-group">
|
||
|
|
{{ range .suuidMap }}
|
||
|
|
<a href="{{ . }}" id="{{ . }}" name="{{ . }}" class="list-group-item list-group-item-action">{{ . }}</a>
|
||
|
|
{{ end }}
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div class="col">
|
||
|
|
<input type="hidden" name="suuid" id="suuid" value="{{ .suuid }}">
|
||
|
|
<input type="hidden" name="port" id="port" value="{{ .port }}">
|
||
|
|
<input type="hidden" id="localSessionDescription" readonly="true">
|
||
|
|
<input type="hidden" id="remoteSessionDescription">
|
||
|
|
<div id="remoteVideos">
|
||
|
|
<video style="width:600px" id="videoElem" autoplay muted controls></video>
|
||
|
|
</div>
|
||
|
|
<div id="div"></div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<script type="text/javascript" src="../../static/js/app.js?ver={{ .version }}"></script>
|
||
|
|
</html>
|