Re: [Faudiostream-users] Would like separate .h and .cpp output rather than monolith

2021-10-11 Thread Steven Kraninger
uot;directory/application structure" to the resulting output. Thanks Steven Kraninger On Mon, Oct 11, 2021 at 3:52 PM Stéphane Letz wrote: > What is the concrete problem you are facing ? > > Thanks. > > Stéphane > > > Le 11 oct. 2021 à 21:59, Scott Tooby a écrit : > &g

[Faudiostream-users] Would like separate .h and .cpp output rather than monolith

2021-10-11 Thread Steven Kraninger
it (in particular for the saving of plugin presets and modification of the UI). Is there any way to do this? Thanks Steven Kraninger ___ Faudiostream-users mailing list Faudiostream-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo

[Faudiostream-users] JUCE code generation question

2021-09-30 Thread Steven Kraninger
at could be called when creating a new FaustPluginAudioParameterFloat (not sure of the struct syntax)? Thanks Steven Kraninger ___ Faudiostream-users mailing list Faudiostream-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/faudiostream-users

[Faudiostream-users] Faust IDE scaled controls do not work the same

2021-09-22 Thread Steven Kraninger
I am not sure if this is only in the IDE, but the slider scaling has changed to be much more skewed and not really usable. For instance: modFreq(j) = hslider("t:EchoMatrix/v:[1]Delays/h:[3]ModFreq/MF U%j[scale:exp][style:knob]", 0.05, 0.0, 10.0, 0.001) : si.smoo ; Goes from 0 to 9 in the 1st

[Faudiostream-users] Faust Based VST in KVR Contest

2021-07-19 Thread Steven Kraninger
All, Entered a Faust based VST called EchoMatrix into the KVR 2021 developer challenge some time ago. Not really that complicated, but I spent some time documenting it and it may be of some interest to the list. Check it out on Github and at

Re: [Faudiostream-users] How to read from rwtable, process the output, and write back to the same rwtable

2021-03-19 Thread Steven Kraninger
= hslider("[0]Read Speed",1,0.001,10,0.01); record = button("[1]Record") : int; looper = rwtable(tableSize,0.0,recIndex,_,readIndex); fooSum = _*5 + _; odLooper = ((_*feedBack + _ : looper) ~ _) : _ with { feedBack = hslider("[3]OverDub",0.0,0.0,1.0,0.01); };