Add MJPEG camera server with systemd deployment
- camera/capture.py: V4L2 mmap-based MJPEG frame capture with background thread - camera/mjpeg.py: MJPEG streaming server (multipart/x-mixed-replace) + minimal web UI - camera/app.py: Entry point with argument parsing and signal handling - pyproject.toml: uv project config (no external dependencies) - camera-webui.service: systemd unit for native Pi deployment - README.md: Updated for systemd-only direction with install instructions
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
"""Entry point for the USB camera web UI server.
|
||||
|
||||
Usage::
|
||||
|
||||
uv run python -m camera.app # run directly
|
||||
uv run python -m camera.app --host 0.0.0.0 --port 8080
|
||||
"""
|
||||
|
||||
import argparse
|
||||
import signal
|
||||
import sys
|
||||
|
||||
from camera.mjpeg import run
|
||||
|
||||
|
||||
def main():
|
||||
parser = argparse.ArgumentParser(description="USB Camera Web UI Server")
|
||||
parser.add_argument("--host", default="0.0.0.0", help="Bind address (default: 0.0.0.0)")
|
||||
parser.add_argument("--port", type=int, default=8080, help="Port (default: 8080)")
|
||||
args = parser.parse_args()
|
||||
|
||||
# Handle shutdown gracefully
|
||||
def _signal_handler(signum, frame):
|
||||
print(f"\nReceived signal {signum}, shutting down...")
|
||||
sys.exit(0)
|
||||
|
||||
signal.signal(signal.SIGINT, _signal_handler)
|
||||
signal.signal(signal.SIGTERM, _signal_handler)
|
||||
|
||||
print(f"Starting camera web UI on http://{args.host}:{args.port}")
|
||||
print("Press Ctrl+C to stop")
|
||||
run(host=args.host, port=args.port)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
@@ -0,0 +1,173 @@
|
||||
"""V4L2 MJPEG capture via the v4l2 Python library (mmap).
|
||||
|
||||
Uses memory-mapped buffers for efficient frame capture without subprocess
|
||||
overhead. Each frame is a complete JPEG image ready for MJPEG streaming.
|
||||
"""
|
||||
|
||||
import fcntl
|
||||
import os
|
||||
import time
|
||||
import threading
|
||||
|
||||
import v4l2
|
||||
|
||||
# Global camera singleton
|
||||
_camera: "Capture | None" = None
|
||||
_camera_lock = threading.Lock()
|
||||
|
||||
|
||||
def _ioctl(fd, request, arg):
|
||||
"""Wrapper for fcntl.ioctl with v4l2 structs."""
|
||||
return fcntl.ioctl(fd, request, arg)
|
||||
|
||||
|
||||
class Capture:
|
||||
"""Captures MJPEG frames via V4L2 mmap buffers."""
|
||||
|
||||
def __init__(self, device: str = "/dev/video0", width: int = 1280, height: int = 720) -> None:
|
||||
self._device = device
|
||||
self._width = width
|
||||
self._height = height
|
||||
self._fd = -1
|
||||
self._buffers: list[dict] = []
|
||||
self._lock = threading.Lock()
|
||||
self._last_frame: bytes | None = None
|
||||
self._capture_thread: threading.Thread | None = None
|
||||
self._running = False
|
||||
|
||||
@classmethod
|
||||
def get(cls, device: str = "/dev/video0", width: int = 1280, height: int = 720) -> "Capture":
|
||||
"""Return the global singleton, creating it if needed."""
|
||||
global _camera
|
||||
with _camera_lock:
|
||||
if _camera is None:
|
||||
_camera = cls(device, width, height)
|
||||
return _camera
|
||||
|
||||
def start(self) -> None:
|
||||
"""Open the device, set up buffers, and begin capturing."""
|
||||
with self._lock:
|
||||
if self._running:
|
||||
return
|
||||
self._open_device()
|
||||
self._setup_format()
|
||||
self._allocate_buffers()
|
||||
self._queue_buffers()
|
||||
self._start_streaming()
|
||||
self._running = True
|
||||
self._capture_thread = threading.Thread(
|
||||
target=self._capture_loop, daemon=True, name="camera-capture"
|
||||
)
|
||||
self._capture_thread.start()
|
||||
|
||||
def stop(self) -> None:
|
||||
"""Stop streaming and release resources."""
|
||||
with self._lock:
|
||||
self._running = False
|
||||
if self._capture_thread:
|
||||
self._capture_thread.join(timeout=3)
|
||||
self._release()
|
||||
|
||||
def _open_device(self) -> None:
|
||||
self._fd = os.open(self._device, os.O_RDWR)
|
||||
cap = v4l2.v4l2_capability()
|
||||
_ioctl(self._fd, v4l2.VIDIOC_QUERYCAP, cap)
|
||||
print(f"Camera: {cap.card.decode('utf-8', errors='replace')[:40]}")
|
||||
|
||||
def _setup_format(self) -> None:
|
||||
fmt = v4l2.v4l2_format()
|
||||
fmt.type = v4l2.V4L2_BUF_TYPE_VIDEO_CAPTURE
|
||||
fmt.fmt.pix.width = self._width
|
||||
fmt.fmt.pix.height = self._height
|
||||
fmt.fmt.pix.pixelformat = v4l2.v4l2_fourcc("MJPG")
|
||||
fmt.fmt.pix.field = v4l2.V4L2_FIELD_ANY
|
||||
_ioctl(self._fd, v4l2.VIDIOC_S_FMT, fmt)
|
||||
print(f"Format set: {fmt.fmt.pix.width}x{fmt.fmt.pix.height} {v4l2.v4l2_fourcc2str(fmt.fmt.pix.pixelformat)}")
|
||||
|
||||
def _allocate_buffers(self) -> None:
|
||||
req = v4l2.v4l2_requestbuffers()
|
||||
req.count = 4
|
||||
req.type = v4l2.V4L2_BUF_TYPE_VIDEO_CAPTURE
|
||||
req.memory = v4l2.V4L2_MEMORY_MMAP
|
||||
_ioctl(self._fd, v4l2.VIDIOC_REQBUFS, req)
|
||||
|
||||
self._buffers = []
|
||||
for i in range(req.count):
|
||||
buf = v4l2.v4l2_buffer()
|
||||
buf.type = v4l2.V4L2_BUF_TYPE_VIDEO_CAPTURE
|
||||
buf.memory = v4l2.V4L2_MEMORY_MMAP
|
||||
buf.index = i
|
||||
_ioctl(self._fd, v4l2.VIDIOC_QUERYBUF, buf)
|
||||
|
||||
length = buf.length
|
||||
offset = buf.m.offset
|
||||
data = os.mmap(0, length, os.PROT_READ, os.MAP_SHARED, self._fd, offset)
|
||||
self._buffers.append({
|
||||
"index": i,
|
||||
"length": length,
|
||||
"mmap": data,
|
||||
})
|
||||
|
||||
def _queue_buffers(self) -> None:
|
||||
for info in self._buffers:
|
||||
buf = v4l2.v4l2_buffer()
|
||||
buf.type = v4l2.V4L2_BUF_TYPE_VIDEO_CAPTURE
|
||||
buf.memory = v4l2.V4L2_MEMORY_MMAP
|
||||
buf.index = info["index"]
|
||||
_ioctl(self._fd, v4l2.VIDIOC_QBUF, buf)
|
||||
|
||||
def _start_streaming(self) -> None:
|
||||
typ = v4l2.v4l2_buf_type(v4l2.V4L2_BUF_TYPE_VIDEO_CAPTURE)
|
||||
_ioctl(self._fd, v4l2.VIDIOC_STREAMON, typ)
|
||||
|
||||
def _stop_streaming(self) -> None:
|
||||
typ = v4l2.v4l2_buf_type(v4l2.V4L2_BUF_TYPE_VIDEO_CAPTURE)
|
||||
try:
|
||||
_ioctl(self._fd, v4l2.VIDIOC_STREAMOFF, typ)
|
||||
except Exception:
|
||||
pass
|
||||
|
||||
def _release(self) -> None:
|
||||
self._stop_streaming()
|
||||
for info in self._buffers:
|
||||
info["mmap"].close()
|
||||
self._buffers = []
|
||||
if self._fd >= 0:
|
||||
os.close(self._fd)
|
||||
self._fd = -1
|
||||
|
||||
def _capture_loop(self) -> None:
|
||||
"""Background loop: dequeue, copy, requeue buffers."""
|
||||
while self._running:
|
||||
try:
|
||||
self._capture_one()
|
||||
except BlockingIOError:
|
||||
time.sleep(0.001)
|
||||
except Exception:
|
||||
time.sleep(0.01)
|
||||
|
||||
def _capture_one(self) -> None:
|
||||
"""Dequeue one frame, copy it, and requeue the buffer."""
|
||||
buf = v4l2.v4l2_buffer()
|
||||
buf.type = v4l2.V4L2_BUF_TYPE_VIDEO_CAPTURE
|
||||
buf.memory = v4l2.V4L2_MEMORY_MMAP
|
||||
_ioctl(self._fd, v4l2.VIDIOC_DQBUF, buf)
|
||||
|
||||
info = self._buffers[buf.index]
|
||||
frame_data = bytes(info["mmap"][:buf.bytesused])
|
||||
self._last_frame = frame_data
|
||||
|
||||
# Requeue buffer
|
||||
buf.index = info["index"]
|
||||
buf.memory = v4l2.V4L2_MEMORY_MMAP
|
||||
buf.type = v4l2.V4L2_BUF_TYPE_VIDEO_CAPTURE
|
||||
_ioctl(self._fd, v4l2.VIDIOC_QBUF, buf)
|
||||
|
||||
def frame(self) -> bytes | None:
|
||||
"""Return the most recently captured frame."""
|
||||
return self._last_frame
|
||||
|
||||
|
||||
def get_camera(device: str = "/dev/video0", width: int = 1280, height: int = 720) -> Capture:
|
||||
"""Convenience accessor for the global camera singleton."""
|
||||
return Capture.get(device, width, height)
|
||||
+130
@@ -0,0 +1,130 @@
|
||||
"""MJPEG streaming handler for HTTP multipart/x-mixed-replace.
|
||||
|
||||
Each client gets its own handler thread. Frames are pulled from the shared
|
||||
camera capture singleton — no queuing, just the latest frame.
|
||||
"""
|
||||
|
||||
import io
|
||||
import threading
|
||||
import time
|
||||
import socketserver
|
||||
from http import server
|
||||
|
||||
BOUNDARY = b"--myboundary"
|
||||
|
||||
# HTML template for the web UI
|
||||
INDEX_HTML = (
|
||||
"<!DOCTYPE html>"
|
||||
"<html lang='en'>"
|
||||
"<head>"
|
||||
"<meta charset='utf-8'>"
|
||||
"<meta name='viewport' content='width=device-width,initial-scale=1'>"
|
||||
"<title>Camera Feed</title>"
|
||||
"<style>"
|
||||
"* { margin: 0; padding: 0; box-sizing: border-box; }"
|
||||
"html, body { width: 100%; height: 100%; background: #111; overflow: hidden; }"
|
||||
"#feed { display: block; width: 100vw; height: 100vh; object-fit: contain; }"
|
||||
"#status { position: fixed; top: 12px; left: 12px; z-index: 10;"
|
||||
" color: #ccc; font: 13px/1 system-ui, sans-serif; display: flex;"
|
||||
" align-items: center; gap: 6px; opacity: 1; transition: opacity 0.3s; }"
|
||||
"#status.hidden { opacity: 0; }"
|
||||
"#spinner { width: 12px; height: 12px; border: 2px solid #555;"
|
||||
" border-top-color: #fff; border-radius: 50%; animation: spin 0.6s linear infinite;"
|
||||
" flex-shrink: 0; }"
|
||||
"@keyframes spin { to { transform: rotate(360deg); } }"
|
||||
"</style>"
|
||||
"</head>"
|
||||
"<body>"
|
||||
"<div id='status'><div id='spinner'></div><span id='label'>Connecting...</span></div>"
|
||||
"<img id='feed' src='/stream' onerror='document.getElementById(\"label\").textContent=\"Stream error\"' />"
|
||||
"</body>"
|
||||
"</html>"
|
||||
)
|
||||
|
||||
|
||||
class MJPEGHandler(server.BaseHTTPRequestHandler):
|
||||
"""Serve a single MJPEG stream to one HTTP client."""
|
||||
|
||||
server_version = "CameraWebUI/0.1"
|
||||
|
||||
def log_message(self, format, *args): # noqa: A002
|
||||
"""Suppress per-request logging to reduce noise."""
|
||||
pass
|
||||
|
||||
def do_GET(self):
|
||||
if self.path == "/" or self.path == "":
|
||||
self._serve_index()
|
||||
elif self.path == "/stream":
|
||||
self._serve_stream()
|
||||
else:
|
||||
self.send_error(404)
|
||||
|
||||
def _serve_index(self):
|
||||
self.send_response(200)
|
||||
self.send_header("Content-Type", "text/html; charset=utf-8")
|
||||
self.end_headers()
|
||||
self.wfile.write(INDEX_HTML.encode("utf-8"))
|
||||
|
||||
def _serve_stream(self):
|
||||
self.send_response(200)
|
||||
self.send_header(
|
||||
"Content-Type", "multipart/x-mixed-replace; boundary=%s" % BOUNDARY.decode()
|
||||
)
|
||||
self.send_header("Cache-Control", "no-cache")
|
||||
self.send_header("Connection", "close")
|
||||
self.end_headers()
|
||||
|
||||
from camera.capture import get_camera
|
||||
|
||||
cam = get_camera()
|
||||
try:
|
||||
last_frame = None
|
||||
while True:
|
||||
frame = cam.frame()
|
||||
if frame is not None and frame is not last_frame:
|
||||
self._write_frame(frame)
|
||||
last_frame = frame
|
||||
else:
|
||||
time.sleep(0.05)
|
||||
except (BrokenPipeError, ConnectionResetError, OSError):
|
||||
pass
|
||||
|
||||
def _write_frame(self, frame: bytes) -> None:
|
||||
"""Write one MJPEG frame with boundary and headers."""
|
||||
w = self.wfile
|
||||
w.write(BOUNDARY)
|
||||
w.write(b"\r\n")
|
||||
w.write(b"Content-Type: image/jpeg\r\n")
|
||||
w.write(b"Content-Length: %d\r\n\r\n" % len(frame))
|
||||
w.write(frame)
|
||||
w.write(b"\r\n")
|
||||
w.flush()
|
||||
|
||||
|
||||
class ThreadedServer(socketserver.ThreadingMixIn, server.HTTPServer):
|
||||
"""HTTP server that handles each request in a new thread."""
|
||||
|
||||
daemon_threads = True
|
||||
allow_reuse_address = True
|
||||
|
||||
|
||||
def run(host: str = "0.0.0.0", port: int = 8080):
|
||||
"""Start the HTTP server and block."""
|
||||
from camera.capture import get_camera
|
||||
|
||||
cam = get_camera()
|
||||
try:
|
||||
cam.start()
|
||||
except FileNotFoundError:
|
||||
print(f"Error: {cam._device} not found — is the camera connected?")
|
||||
raise SystemExit(1)
|
||||
|
||||
server = ThreadedServer((host, port), MJPEGHandler)
|
||||
print(f"Server running on http://{host}:{port}")
|
||||
try:
|
||||
server.serve_forever()
|
||||
except KeyboardInterrupt:
|
||||
pass
|
||||
finally:
|
||||
cam.stop()
|
||||
server.server_close()
|
||||
Reference in New Issue
Block a user