Hello guys,
I’ve one question : is there any plugin that can select all the track’s audio routing device in order to change all the tracks’ output device in one click?
because for example if you have 50 or 100 tracks in your project and you need to change the output of all the tracks one by one it can takes ages sometime
I haven’t done that specifically but I bet you can create a new track to route them all through, then use a SEND or one of those things to bounce them to the new track. I’m curious about this now and I’m gonna look into it
EDIT: That should work, just create new sidechains for each set of tracks you want to control and use the SEND thing, or am I missing something?
Like right here tracks 9 and 10 are both routed through the first sidechain, then you could control both of them from there
Here is some lua-code which lets you do it. Maybe you or somebody else can turn it into a tool plugin.
With this, it will print the available outputs and you need to replace the number accordingly (currently of value 1)
local routings = renoise.song().tracks[1].available_output_routings
rprint(routings)
for i, track in pairs(renoise.song().tracks) do
if track.type == renoise.Track.TRACK_TYPE_SEQUENCER then
track.output_routing = routings[1]
end
end