Sorry I was so hasty in my response, I wanted to make sure not to forget to try help out somehow.
You’ll want to do something like this (not including setup code to set your loop points, enable voices, etc.):
-- set each in to a different head
softcut.level_in_cut(1,1,1)
softcut.level_in_cut(2,2,1)
-- route feedback for each head
softcut.level_cut_cut(1,2,0.75)
softcut.level_cut_cut(2,1,0.75)
-- enable output
softcut.level(1,1)
softcut.level(2,1)
In addition, you’ll also want to make sure your audio levels are set so softcut is getting your engine/input/tape at a good level, and that softcut’s level is up in the mixer…iirc.
Hope that’s more helpful!
Ps. I’m almost certain you’ve seen it, but just in case not - the softcut api docs are pretty helpful.
2 Likes