I’m working on a small Lua testing tool that would visualize track/master output levels as a VU-meter-style bar graph on grid-based MIDI controllers (I have an AKAI APCkey25 - 6x8 LED matrix - and a MIDIPLUS SmartPAD - 8x8 - to test on). The idea is simple: read the signal level, map it to a column height, send the corresponding note-on/velocity messages to light up the right number of LEDs per column.
I went through the API docs (renoise.Track, renoise.DeviceParameter) and also dumped a live Master track with oprint() - as far as I can tell, the API only exposes fader/parameter values (postfx_volume, prefx_volume, etc.), which reflect the set level, not the actual signal level. There doesn’t seem to be anything like output_level, peak_meter, or vu_meter anywhere in the API.
Am I missing something, or does the API genuinely not expose real-time signal metering? If not - would it be feasible to add something like track.output_meter_left/right (even just a lightweight peak value, doesn’t need to be sample-accurate) in a future API version? It would open up a whole category of hardware VU/LED visualizers for grid controllers.
Thanks!