blob: 399d2e893582b8a48fc7dd8b7b2027751559f91e (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>π-kvm</title>
<style>
body {
text-align: center;
}
.screen, .screen * {
box-sizing: border-box;
}
.screen {
display: inline-block;
background-color: #e5e5f5;
font-family: Arial, Tahoma, Verdana, sans;
font-size: 10pt;
text-align: center;
padding: 1em;
text-align: left;
}
.screen .screen-image {
width: 720px;
height: 576px;
border: 1px solid #77d;
display: inline-block;
}
</style>
</head>
<script>
function onWsMessage(message) {
console.log(message.data);
if (message.data == "EVENT mjpg_streamer started") {
document.getElementById("stream-image").src = "/streamer/?action=stream&time=" + new Date().getTime();
}
}
ws = new WebSocket("ws://" + location.host + "/kvmd/ws");
ws.onmessage = (message) => onWsMessage(message);
ws.onerror = (error) => console.error(error);
ws.onclose = () => console.log("closed");
</script>
<body>
<div class="screen">
<img src="/video/?action=stream" id="stream-image" class="screen-image" alt="" />
</div>
</body>
</html>
|