-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMJPEGIpCamera.HTML
More file actions
59 lines (53 loc) · 1.49 KB
/
MJPEGIpCamera.HTML
File metadata and controls
59 lines (53 loc) · 1.49 KB
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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IP-Kamera Live-Ansicht</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
width: 100%;
height: 100%;
background: black;
overflow: hidden;
}
.container {
display: flex;
flex-direction: column;
width: 100vw;
height: 100vh;
}
.video-wrapper {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
background: black;
}
video {
width: 100%;
height: 100%;
object-fit: contain; /* Zentriert das Bild */
border: none;
}
</style>
</head>
<body>
<div class="container">
<div class="video-wrapper">
<video src="http://palladiumjamaica.axiscam.net:51233/mjpg/video.mjpg?resolution=640x480" autoplay loop muted></video>
</div>
<div class="video-wrapper">
<video src="http://201.134.241.4/mjpg/video.mjpg?resolution=704x480" autoplay loop muted></video>
</div>
<div class="video-wrapper">
<video src="http://200.36.58.250/mjpg/video.mjpg?resolution=640x480" autoplay loop muted></video>
</div>
</div>
</body>
</html>