-
Notifications
You must be signed in to change notification settings - Fork 1
/
play.html
76 lines (64 loc) · 2.28 KB
/
play.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="./vplayer/playback/ui.css">
<link rel="stylesheet" href="./vplayer/playback/playbar.css">
<link rel="stylesheet" href="./vplayer/playback/records.css">
<title>Tiny noVNC Player (VPlayer)</title>
</head>
<script type="text/javascript">
var INCLUDE_URI = "./vplayer/";
var DATA_INCLUDE_URI = "../";
var VPLAYER_URI = "play.html";
//var FULL_SCREEN = 1;
//var DATA_URI = "linux-lab.slice";
//var INCLUDE_URI= "http://example.com/";
</script>
<body>
<div id="VNC_main">
<div id="VNC_playbar">
<div id="left_playbar">
<span id="current_time" title="Current time"></span>
</div>
<div id="middle_playbar">
<input id="trackBar" type="range" min="0" max="10" step="1" value="0" title="Drag or Click to the target frame" />
</div>
<div id="right_playbar">
<span id="total_time" title="Total time"></span>
<span id="fsBtn" title="Enter Fullscreen">[+]</span>
<span id="moreBtn" title="Show noVNC Sessions">...</span>
</div>
</div>
<div id="VNC_screen">
<canvas id="VNC_canvas" width="100%">
Canvas not supported.
</canvas>
<canvas id="VNC_canvas_backup" width="100%">
Canvas not supported.
</canvas>
<div id="VNC_status">Loading ...</div>
</div>
<div id="VNC_records">
</div>
<div id="VNC_default_video">
<h1> vplayer.io - noVNC Player </h1>
<p>
<a href="https://github.com/tinyclub/vplayer.io">Vplayer.io</a> |
<a href="http://showdesk.io">Showdesk.io<a/> |
<a href="https://github.com/tinyclub/pyvnc2swf">Pyvnc2swf<a/> |
<a href="https://github.com/tinyclub/cloud-ubuntu">Cloud Ubuntu</a>
</p>
<hr>
<iframe src="/fb06f5b908bfcf4b07b5a6a1b6df0897/" width="666" height="521" marginheight="0" marginwidth="0" frameborder="0" scrolling="no" border="0"></iframe>
<hr>
<p>Based on <a href='https://github.com/novnc/noVNC/'>noVNC</a> and Powered by <a href='http://tinylab.org'>TinyLab.org</a></p>
</div>
<audio preload="auto"></audio>
</div>
</body>
<script src="./vplayer/core/util.js"></script>
<script src="./vplayer/app/webutil.js"></script>
<script src="./vplayer/audiojs/audio.min.js"></script>
<script src="./vplayer/playback/ui.js"></script>
</html>