Lua Panner bypass

How to bypass the panner with a Lua script ?

see The Ardour Manual - Lua Bindings Class Reference

eg.

local sel = Editor:get_selection ()
for r in sel.tracks:routelist ():iter () do
  r:panner_shell():set_bypassed (true)
end
1 Like

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.