Page 1 of 1
delay time
Posted: Sun Oct 04, 2015 6:58 pm
by BobF
Hello Gang,
Just a quick question. What is the min and max delay times in milliseconds the
interpolated delays can be set for?
Thanks all, BobF
P.S., By any chance are Trogz Tools to be had anywhre?
Re: delay time
Posted: Sun Oct 04, 2015 7:15 pm
by martinvicanek
Min delay is one sample (however you can bring that to zero with some extra effort). Max delay is probably only limited by RAM, never tried that though.
I have Trogz Toolz, will upload on FS Guru, perhaps with some other useful stuff that was lost with the SM forum (still can't believe it really happened

)
Re: delay time
Posted: Sun Oct 04, 2015 7:29 pm
by BobF
Many thanks Martin,
I am working on something crazy as usual !
Later then, BobF....
P.S., Martin, trogs tools and etc would be wonderful and much appreciated by many I would think!
Re: delay time
Posted: Sun Oct 04, 2015 10:38 pm
by KG_is_back
maximum delay of the stock delay modules is 2^24 samples =~ 5minutes @44KHz samplerate. It is because internally float counters are used and float can represent integers only up to +-2^24. Wave read prims have similar limitation - they can't read samples properly beyond 5th minute (if you need to load longer waves, you have to split them into smaller segments). I have made some custom delays and wave-read modules which overcome this limitation, though you have to provide the index in int format. Basically you have to write a lot of the code in assembler if you want to exploit their advantages.
Re: delay time
Posted: Sun Oct 04, 2015 11:17 pm
by BobF
Hi Kg,
Thanks for the info. This helps a lot. Are any of your custom delays avaible ?
Thanks again, BobF.....
Re: delay time
Posted: Mon Oct 05, 2015 5:47 pm
by KG_is_back
http://flowstone.guru/downloads/efficient-delays-and-delay-code-generators/Code generators - small modules, which generate appropriate optimized assembler code. Just pick the delay type you are going for, specify required parameters and copy-paste the code into assembler component.
Re: delay time
Posted: Tue Oct 06, 2015 7:24 pm
by BobF
Thanks alot KG! These are most welcome.