Deleted

For general discussion related FlowStone
Post Reply
Sweenlion
Posts: 2
Joined: Sat Sep 19, 2015 12:50 pm

Deleted

Post by Sweenlion »

Deleted
Last edited by Sweenlion on Wed Aug 04, 2021 11:34 pm, edited 2 times in total.
KG_is_back
Posts: 1196
Joined: Tue Oct 22, 2013 5:43 pm
Location: Slovakia

Re: Convolution Reverb - Can Flowstone handle it?

Post by KG_is_back »

I have a bad news for you. Flowstone has certain limitations, namely, you can't pass arrays between code components (understand: edit array in module1 and use the modified in module2). Also, code component is quite limited when it comes to loops. Because of that, there is no reliable/usable FFT for streams (so frequency domain calculations are quite clumsy). You may have to:
1.write all of the code in one assembler component
2.use external DLL to process the data.

If the impulses will be around ~1000samples long, time domain convolution is relatively feasible and CPU isn't that high. But assuming you're talking about actual reverb, the impulses will probably be much longer than that. If that's the case, you may have a problem...
Post Reply