Claude: Button

This commit is contained in:
chk
2026-06-03 21:26:44 +02:00
parent 4a216aff16
commit 0fab0ab523
5 changed files with 56 additions and 47 deletions

View File

@@ -13,13 +13,21 @@
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; }
#statusText { font-size: 0.8rem; color: #888; }
#snapAllBtn {
margin-left: auto;
background: #2a4a2a; color: #8f8; border: 1px solid #4a8;
padding: 5px 14px; font-family: monospace; font-size: 0.82rem;
cursor: pointer; border-radius: 3px; letter-spacing: 0.03em;
}
#snapAllBtn:hover:not(:disabled) { background: #3a6a3a; }
#snapAllBtn:disabled { opacity: 0.4; cursor: default; }
#cameras { display: flex; flex-wrap: wrap; gap: 12px; padding: 12px; }
.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; }
@@ -28,23 +36,17 @@
background: rgba(0,0,0,.65); padding: 2px 7px; border-radius: 3px;
font-size: 0.72rem; color: #ccc;
}
.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;
cursor: pointer; border-radius: 3px;
}
.cam-actions button:hover { background: rgba(60,60,60,.8); }
</style>
</head>
<body>
<header>
<h1>AppRobotWebcam</h1>
<span id="statusText">Verbinde...</span>
<button id="snapAllBtn" disabled>⬇ Snapshot alle</button>
</header>
<div id="cameras"></div>
<!-- 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>

View File

@@ -3,16 +3,31 @@
// go2rtc Player-Modi Fallback-Reihenfolge: WebRTC → MSE → MJPEG
const MODE = 'webrtc,mse,mjpeg';
// ── Logging (sichtbar in Browser DevTools → Console → F12) ──────────────────
// ── Logging (Browser DevTools → Console → F12) ───────────────────────────────
const P = '[WebcamViewer]';
const log = (c, m) => console.log(`${P}[${c}] ${m}`);
const warn = (c, m) => console.warn(`${P}[${c}] ⚠ ${m}`);
const err = (c, m, e) => console.error(`${P}[${c}] ✗ ${m}`, e ?? '');
const logErr = (c, m, e) => console.error(`${P}[${c}] ✗ ${m}`, e ?? '');
// ── Snapshot aller Kameras gleichzeitig ──────────────────────────────────────
// Auflösung = was go2rtc im MJPEG-Stream hält (aktuell 640×480 gemäss Config).
// Für höhere Auflösung: in go2rtc.yaml einen separaten Hi-Res-Stream definieren
// und hier auf dessen /api/frame.jpeg?src=cam0_hires zeigen.
function snapshotAll(camIds) {
const ts = Date.now();
log('snap', `Snapshot alle Kameras: ${camIds.join(', ')}`);
camIds.forEach(id => {
const a = document.createElement('a');
a.href = `/api/snapshot/${id}`;
a.download = `${id}_${ts}.jpg`;
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
});
}
// ── Kamera-View aufbauen ─────────────────────────────────────────────────────
function buildCamera(camId, go2rtcPort, container) {
// WebSocket direkt zu go2rtc kein Proxy-Zwischenschritt, garantiert stabil.
// Protokoll: ws:// auf LAN (http). Für Internet mit TLS wird aus ws: wss: (Caddy).
const wsUrl = `ws://${location.hostname}:${go2rtcPort}/api/ws?src=${encodeURIComponent(camId)}`;
log(camId, `View erstellt mode="${MODE}" ws=${wsUrl}`);
@@ -22,16 +37,15 @@ function buildCamera(camId, go2rtcPort, container) {
const stream = document.createElement('video-stream');
stream.mode = MODE;
// Events vom inneren <video>-Element (capture-Phase)
stream.addEventListener('play', () => log(camId, '▶ spielt'), true);
stream.addEventListener('playing', () => log(camId, '▶ Bild läuft'), true);
stream.addEventListener('pause', () => warn(camId, 'pausiert'), true);
stream.addEventListener('stalled', () => warn(camId, 'stalled (keine Daten)'), true);
stream.addEventListener('waiting', () => warn(camId, 'waiting (Buffer leer)'), true);
stream.addEventListener('error', (e) => err(camId, 'Video-Fehler', e), true);
stream.addEventListener('error', (e) => logErr(camId, 'Video-Fehler', e), true);
log(camId, `Verbinde WebSocket → ${wsUrl}`);
stream.src = wsUrl; // setzt den VideoRTC-src und startet die Verbindung
stream.src = wsUrl;
box.appendChild(stream);
@@ -40,20 +54,6 @@ function buildCamera(camId, go2rtcPort, container) {
label.textContent = camId;
box.appendChild(label);
const actions = document.createElement('div');
actions.className = 'cam-actions';
const snapBtn = document.createElement('button');
snapBtn.textContent = 'Snapshot';
snapBtn.onclick = () => {
log(camId, `Snapshot → /api/snapshot/${camId}`);
const a = document.createElement('a');
a.href = `/api/snapshot/${camId}`;
a.download = `${camId}_${Date.now()}.jpg`;
a.click();
};
actions.appendChild(snapBtn);
box.appendChild(actions);
container.appendChild(box);
}
@@ -61,30 +61,27 @@ function buildCamera(camId, go2rtcPort, container) {
async function init() {
log('init', 'Starte...');
// go2rtc-Port vom Server holen (damit er nicht im Client hart kodiert ist)
let go2rtcPort = 1984;
try {
const r = await fetch('/config.json');
const d = await r.json();
go2rtcPort = d.go2rtcPort ?? 1984;
log('init', `go2rtc WebSocket-Port: ${go2rtcPort}`);
log('init', `go2rtc WS-Port: ${go2rtcPort}`);
} catch (e) {
warn('init', `Konnte /config.json nicht laden, nehme Port ${go2rtcPort}`);
}
// go2rtc Web-Component muss geladen sein bevor .src gesetzt wird
try {
await customElements.whenDefined('video-stream');
log('init', '<video-stream> definiert');
} catch (e) {
err('init', '<video-stream> nicht geladen /video-stream.js erreichbar?', e);
logErr('init', '<video-stream> nicht geladen /video-stream.js erreichbar?', e);
return;
}
const container = document.getElementById('cameras');
const statusText = document.getElementById('statusText');
// Kamera-Liste von go2rtc via Node-Proxy
let cams = [];
try {
const r = await fetch('/api/snapshot');
@@ -95,7 +92,7 @@ async function init() {
log('init', `Kameras: ${cams.join(', ') || '(keine)'}`);
}
} catch (e) {
err('init', '/api/snapshot Fehler Fallback', e);
logErr('init', '/api/snapshot Fehler Fallback', e);
}
if (cams.length === 0) {
@@ -103,6 +100,13 @@ async function init() {
cams = ['cam0', 'cam1'];
}
// Globaler Snapshot-Button in der Header-Bar verdrahten
const snapAllBtn = document.getElementById('snapAllBtn');
if (snapAllBtn) {
snapAllBtn.onclick = () => snapshotAll(cams);
snapAllBtn.disabled = false;
}
cams.forEach(id => buildCamera(id, go2rtcPort, container));
statusText.textContent = `${cams.length} Kamera${cams.length !== 1 ? 's' : ''} · WebRTC`;
log('init', 'Fertig');