ReMapping — manuals and working notes
ReMapping is the film system in ~/Documents/Remapping: a production is a folder, a film
is Python, and the renderer plans it, renders frame ranges, encodes segments, joins them, mixes
audio, and verifies the delivered file against an output profile before it is allowed into
outputs/. These three notes are everything currently written about it.
In one line. Read the rendering guide to operate the system, the implementation requests to see what is being changed, and My Comments for the running log of what broke and what was fixed.
The pipeline in one picture
Every command in the guide sits somewhere on this line. The rule of thumb is to work top to bottom and never skip the cheap checks — a still costs seconds, a full render costs considerably more.
Current state
| Item | Kind | State |
|---|---|---|
| Guided voice-recording studio | feature | requested |
Diagnostic overlays in still | bug — cause known | open |
| High-frame-rate output profiles | feature | requested |
| Outline on text | open case | to check |
| Tracking on math | open case | to check |
| Framing outline · Camera3D quality | issues | fixed |
Getting to a production quickly
cd ~/Documents/Remapping
source .venv/bin/activate
# make a new production
uv run remapping production new productions/my-film --id my-film
# the cheap checks, in order
uv run remapping production validate productions/my-film
uv run remapping film inspect productions/my-film
uv run remapping still productions/my-film --scene title --time 1
The full sequence, all the options, and what each render mode is for are in the rendering guide.