i want to send a Ft with a stereo soundfile to an udo, there i want to extract the two channels and work with them separately.
Is it possible to split these channels inside the UDO?
i have two thoughts about it:
1. you can use two GEN01 calls and specify which channel you want to read.
2. in your stereo function table, the left channel will consist of table indices 0,2,4,..., and the right channel of indices 1,3,5,...
so you can write someting like this for the left channel:
indx = 0
while indx < ftlen(mytable) do
(read table, perhaps write to another table)
indx += 2
od