Dear list,
is it possible to render multichannel & individual files per channel with recordNRT? (i only manage to output stereo files)
or is there another NRT compatible method that could do this?
thank you,
jan
Dear list,
is it possible to render multichannel & individual files per channel with recordNRT? (i only manage to output stereo files)
or is there another NRT compatible method that could do this?
thank you,
jan
See the NRT guide helpfile, where it explains about configuring input and output channels using a ServerOptions object.
& individual files per channel
NRT accepts one output file path and writes one audio file based on this.
But DiskOut
works perfectly well in NRT. So you can create as many output Buffers as you need, writeMsg
each of them (important: leaveOpen: true
!), and run a DiskOut unit for each buffer. This is the same technique you would use for multiple stems in real time, just encoded into an OSC score file.
hjh
Thank you James, ill try the DiskOut option that you propose!