MQTT: source-Feld der Live-Cam auf "webcam" (statt Kamera-ID)

camera=Kamera-ID (cam1), source=Herkunft (webcam/video) - vorher war
source bei der Live-Cam mit der Kamera-ID belegt und damit redundant.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-01 19:29:48 +02:00
parent 887379a1d6
commit e30aae2781

2
app.py
View File

@@ -576,7 +576,7 @@ class WebcamGrabber:
line_start, line_end = self._current_line()
if moving:
frame = process_frame(img, self.model, self.names, line_start, line_end, state, source=CAMERA_ID)
frame = process_frame(img, self.model, self.names, line_start, line_end, state, source="webcam")
else:
frame = render_static(img, line_start, line_end, state)