Bart Brouns
Bart Brouns
We don't want to expose all of them, right? How many is a practical maximum? I'd say we need at least the params of the default macro. If you agree,...
I replaced the sine oscillator with a sine-noise oscillator. When index is 0, you hear a sine, just like with all the other oscillators. When index is between 0 and...
Currently ``tab macros -> curve`` is implemented as: ```faust mapping(x) = pow(x,curveIndex); curveIndex = select2(curveSlider>0 , 1/(abs(curveSlider)+1) , curveSlider+1 ); ``` This gives an asymmetric behavior, both between positive and...
Vibrato
An important feature imho,is vibrato: modulating the pitch with an LFO. What are your thoughts on this? I see 3 options: - I can make a simple dedicated LFO for...
I know you are not at this stage yet, but maybe we can already brainstorm. # copy functions We talked about adding functions to copy parameters from one macro to...
I added another filter. It sounds great, but uses quite some CPU: it went from 36% to 39% on my machine. Also the compile takes way longer with this. What...
You asked for modulation of all parameters by oscillators. The [osc_modulation branch](https://github.com/magnetophon/DigiDrie/tree/osc_modulation) has that, but in a hacked and buggy way. It is hacked in the sense that the vector...
When you run ``` echo "ok" >> "/home/user/.local/novault.lock" ``` and then some time later run ``` novault get [email protected] ``` the PW gets typed right away. IMHO the ok should...
The first loop should define the loop size, the loops that come after that should be variable in size: an integer multiple of loop 1. For that, there need to...