spelunkai/recording/pyproject.toml
Jonas a7c370b3d4 Implement recording tool: lossless capture + frame-synced input log
Add ffmpeg/x11grab-based video capture (libx264rgb, qp=0, true lossless
RGB) and an evdev-based keyboard state logger, orchestrated by a single
frame-tick loop so each JSONL input row lines up 1:1 with its video
frame. Unit-tested with fake keyboard/video components (no real device
or ffmpeg needed); real hardware capture still needs validation on the
recording PC.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-16 08:12:05 +02:00

22 lines
455 B
TOML

[project]
name = "spelunkai-recording"
version = "0.0.0"
description = "SpelunkAI Recording Tool: gameplay video + input log capture"
requires-python = ">=3.10"
dependencies = [
"evdev>=1.7",
]
[project.optional-dependencies]
dev = ["pytest>=8"]
[project.scripts]
spelunkai-record = "spelunkai_recording.cli:main"
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]