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>
22 lines
455 B
TOML
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"]
|