Add top-level README, .gitignore, and per-component directories (recording, labeling backend/frontend, training, inference, control) with READMEs and pyproject.toml/package skeletons per CLAUDE.md §2-3. No implementation yet, just structure to build against. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
19 lines
497 B
Markdown
19 lines
497 B
Markdown
# Recording Tool
|
|
|
|
Captures *Spelunky Classic HD* gameplay on the dedicated recording PC (Ubuntu 24
|
|
Desktop, fullscreen 1280x720) as a lossless 30fps MP4, alongside a separate input log
|
|
mapped frame-accurately to the video timeline (frame index + timestamp + key state).
|
|
Output must be easy to slice into individual frames for labeling.
|
|
|
|
See CLAUDE.md §3.1 for full requirements.
|
|
|
|
**Status:** not yet implemented.
|
|
|
|
## Setup
|
|
|
|
```
|
|
python -m venv .venv
|
|
source .venv/bin/activate
|
|
pip install -e .
|
|
```
|