claude: webcam

This commit is contained in:
chk
2026-06-03 19:50:16 +02:00
parent 1a712ed877
commit 77c20bc3f1
9 changed files with 346 additions and 365 deletions

View File

@@ -6,51 +6,32 @@
<title>AppRobotWebcam</title>
<style>
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: #0f0f0f; color: #e0e0e0; font-family: monospace; }
header {
display: flex; align-items: center; gap: 12px;
padding: 10px 16px;
background: #1a1a1a;
border-bottom: 1px solid #333;
padding: 10px 16px; background: #1a1a1a; border-bottom: 1px solid #333;
}
h1 { font-size: 1rem; font-weight: normal; letter-spacing: 0.05em; }
#statusText { font-size: 0.8rem; color: #888; margin-left: auto; }
#cameras {
display: flex; flex-wrap: wrap; gap: 12px;
padding: 12px;
}
#cameras { display: flex; flex-wrap: wrap; gap: 12px; padding: 12px; }
.cam-box {
position: relative;
background: #000;
border: 1px solid #2a2a2a;
}
.cam-box video { display: block; }
.cam-box { position: relative; background: #000; border: 1px solid #2a2a2a; }
/* go2rtc Web-Component */
video-stream { display: block; width: 640px; height: 480px; background: #111; }
video-stream video { width: 100%; height: 100%; object-fit: contain; }
.cam-label {
position: absolute; top: 5px; left: 8px;
background: rgba(0,0,0,.65);
padding: 2px 7px; border-radius: 3px;
background: rgba(0,0,0,.65); padding: 2px 7px; border-radius: 3px;
font-size: 0.72rem; color: #ccc;
}
.cam-info {
position: absolute; bottom: 5px; right: 8px;
background: rgba(0,0,0,.65);
padding: 2px 7px; border-radius: 3px;
font-size: 0.68rem; color: #999;
}
.cam-actions {
position: absolute; top: 5px; right: 8px;
display: flex; gap: 4px;
}
.cam-actions { position: absolute; top: 5px; right: 8px; display: flex; gap: 4px; }
.cam-actions button {
background: rgba(0,0,0,.65); color: #ccc;
border: 1px solid #444; padding: 2px 8px;
font-family: monospace; font-size: 0.7rem;
background: rgba(0,0,0,.65); color: #ccc; border: 1px solid #444;
padding: 2px 8px; font-family: monospace; font-size: 0.7rem;
cursor: pointer; border-radius: 3px;
}
.cam-actions button:hover { background: rgba(60,60,60,.8); }
@@ -62,6 +43,9 @@
<span id="statusText">Verbinde...</span>
</header>
<div id="cameras"></div>
<script src="viewer.js"></script>
<!-- go2rtc's offizieller Player (über Node-Proxy von go2rtc geladen) -->
<script type="module" src="/video-stream.js"></script>
<script src="viewer.js" defer></script>
</body>
</html>