Reverse Delay help


#1

Hi, Ive read through the posts relating to this and unless Im just missing something Im not finding a clean way to make a simple stereo reverse delay.
Im constantly using my green line6 pedal for this, but Id rather do it in the axoloti with a longer delay and some other options.
Ideally Id like to just modify the TapeDelay (TSG/fx/TapeDelay) Im already using (and have modified) to do so.
Looking at the code of sss/delay/MorphDel Im a bit confused as to why theres a reverse1 and a reverse2

Can I just replace :((attr_delayname.writepos- BUFSIZE - 1)<<8); in TSG/delay/ream_m_interp
with: (attr_delayname.writepos - (_USAT(pos2,27)>>(27-attrdelayname.LENGTHPOW)) - BUFSIZE); from MorphDel?


#2

hi damon,
no, you cannot just replace these two as TSG's delay probably doesn't use anything called "pos" and his delay is probably build differently.

My module crossfades between two readouts (=taps) and the reverse1 and reverse2 mean that you can decide which tap to reverse.


#3

Thanks!
Is there any way to add the flutter to yours?
Also do you have an example of yours in context?


#4

it's quite an old module which makes use of my old clock2timing module and should refer to a delay module (the factory one that records the incoming audio in a delayline). Can't find the project anymore where I build it in (I currently have 2500+ projects made, so it's sómewhere in there. But it could very well be a small module I wrote in a project that was about another module, so it's nearly impossible to find out which project it was. Especially as the data of all modules say 20/8/2020 and not the original creation date).

But you could add your own flutter by adding a small, slowely changing random modulation to the timing input.


#5

Is there a way to control flutter with an inlet?