On Sat, May 09, 2020 at 05:24:27AM -0700, csoundercsounder wrote: > please can you adapt the cabbage code to a .csd code, runnable in csound? > (csoundqt or whatever editor) I made a test version to see what it actually sounds like. Just fixed the parameters to something plausible, then ran it in a Livecode setup to play around with them. (You don't need to livecode...) Here's a slightly cleaned version: -m0 -d -odac sr = 48000 ksmps = 48 0dbfs = 1.0 nchnls = 2 gSfname = "some_mono_source.wavf" instr 1 p3 filelen gSfname a1 diskin gSfname adelt = 10 kamt = 0.3 adel vdelayx a1, adelt*0.001, 0.1, 4 aL = a1+(adel*kamt) aR = a1-(adel*kamt) outs aL, aR endin instr 2 p3 filelen gSfname a1 diskin gSfname outs a1, a1 endin i1 0 1 'instr 2' just feeds the original file for comparison. I found you can increase 'kamt' to 1.0 to get a strong effect. Cheers, -- Pete -- Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here