P1.5 SOLVED: live ctx (0x2370040, +0x24==48000) + level-tracker A[] + mask scalars captured via realtime playback; method play.lua + rtctx_rt.py; prior 'unreachable' was offline-engine artifact

This commit is contained in:
2026-08-20 00:44:58 +03:00
parent fe43509d50
commit 0e90918226
5 changed files with 1327 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
-- play.lua : realtime transport playback to keep the DSP host's audio callback
-- alive, so an external script can snapshot memory while ctx fields are live.
local keep_secs = 300
reaper.Main_OnCommand(1007, 0) -- Transport: Play (realtime audio)
local t0 = reaper.time_precise()
while reaper.time_precise() - t0 < keep_secs do
reaper.Sleep(200)
end
reaper.OnStopButton()