Page 1 of 1

"offline" DSP processing

PostPosted: Sat Feb 24, 2018 4:19 pm
by KG_is_back
Ever needed to load large wave file and then process/analyse it "offline" (aka as fast as possible). I may have made something that does exactly that. It basically works by triggering signal analyser prim with a trigger from separate thread. This ensures that flowstone will not freeze during long calculations. I've also added a progress bar.

NOTE: the example schematic can only process files shorter than 2^23 samples (cca 3min @44kHz), because wave-read and wave-write prims accept index as float.

Re: "offline" DSP processing

PostPosted: Sat Feb 24, 2018 6:39 pm
by Spogg
Excellent!

Works fine for me.

Thanks KG!

Re: "offline" DSP processing

PostPosted: Sun Mar 04, 2018 4:24 pm
by Wassaka
Thanks KG!!!! Awesome module, but I have a question... How can I make the delay compensation? For example, I have a compressor with some lookahead and the rendered version is displaced and cutted...


Thanks, Wassaka.

Re: "offline" DSP processing

PostPosted: Sun Mar 04, 2018 4:45 pm
by KG_is_back
You offset the index on the wave write prims (inside "wave create+write" module), by adding/subtracting an integer. Similarly you can offset the input. Additionally you may also want to adjust the length - by adding to the "length" input of the "offline processing of stream v1.0" module. The length controls how many samples are being processed. That is completely separate from which samples are being read/written to - that is controlled by the wave read and wave write modules respectively.

Re: "offline" DSP processing

PostPosted: Mon Mar 05, 2018 12:24 am
by Wassaka
KG_is_back wrote:You offset the index on the wave write prims (inside "wave create+write" module), by adding/subtracting an integer. Similarly you can offset the input. Additionally you may also want to adjust the length - by adding to the "length" input of the "offline processing of stream v1.0" module. The length controls how many samples are being processed. That is completely separate from which samples are being read/written to - that is controlled by the wave read and wave write modules respectively.

Thank you very much!!