-
Notifications
You must be signed in to change notification settings - Fork 11
/
vlc.html
33 lines (33 loc) · 1.67 KB
/
vlc.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!doctype html>
<meta charset=utf-8>
<title>SelfStreaming: TV</title>
<link rel=stylesheet href=css/bootstrap.min.css>
<script src=js/jquery-2.1.1.min.js></script>
<script src=js/jquery.ajax-progress.js></script>
<script src=js/bootstrap.min.js></script>
<script src=js/selfstreaming-lib.js></script>
<script src=js/selfstreaming-sapsdp.js></script>
<script src=js/selfstreaming-ui.js></script>
<style>
#player-container { text-align: center }
#player-container * { border: 1px solid #282828; margin-bottom: 20px }
#channel-list tbody tr { cursor: pointer }
</style>
<div class="container">
<div class="page-header text-center">
<a href=/><img src=img/selfstreaming.png alt=SelfStreaming height=58 width=382></a>
</div>
<div id=player-container class=center></div>
<div id=notice style=display:none class="alert alert-danger alert-dismissable">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
<span class="glyphicon glyphicon-info-sign"></span> <span id=notice-text></span>
</div>
<div class="alert alert-warning alert-dismissable">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
<span class="glyphicon glyphicon-info-sign"></span> The VLC browser plugin is based on the NPAPI which is in the process of being phased out by browser vendors. If you would like to help us finding/making an appropriate replacement, please <a href="mailto:[email protected]">let us know</a>. No programming experience required.
</div>
<table id=channel-list style=display:none class="table table-hover">
<thead><tr><th>Channel<th>Current Show<th>Description<th>Link
<tbody>
</table>
</div>