@tiesvdam use setValue(0); when the effect should be bypassed and setValue(1); when it should be active
Posts
-
RE: 1 on/of button controlling 2 effects
-
FFT Spectral Denoiser Faust dsp
Hi there, I found a .pdf file with a Faust code for FFT spectral denoising and other spectral stuff I fixed a couple things in the code and can open it in the Faust WEB editor but I don't get any sound only a little sound at the beginning.
Maybe someone could check that and fix thisimport("stdfaust.lib"); fftSize = hslider("fftSize", 1024, 2, 16384, 1); bufferSize = fftSize / 2 + 1; cartopol(x, y) = sqrt(x * x + y * y), atan2(y, x); poltocar(r, theta) = r * cos(theta), r * sin(theta); freezeBtn = checkbox("Capture"); reduceSld = hslider("Reduce", 0, 0, 2, 0.01); freeze(rIn, iIn, bin) = out with { freezeSignal(sig, frz) = orig + freezed with { orig = sig * (1 - frz); freezed = (orig : @(bufferSize)) + (orig * frz : @(bufferSize - 1)) * frz; }; out = freezeSignal(rIn, freezeBtn), freezeSignal(iIn, freezeBtn); }; fftproc(rIn, iIn, bin) = out with { pol = cartopol(rIn, iIn); mag = pol : _, !; phase = pol : !, _; pol_frozen = freeze(rIn, iIn, bin) : cartopol; mag_frozen = pol_frozen : _, !; phase_frozen = pol_frozen : !, _; out = poltocar(max(mag * (1 - freezeBtn) + (mag - mag_frozen * reduceSld) * freezeBtn, 0), phase); }; process = fftproc;
-
RE: Build failed CompileC
@bfaudio I got the error because I tried to export a project (I created on my M3 Mac) on my Intel Mac
-
RE: timer functions
@d-healey it was just an example with the effects I want to setup my timer that it runs 10 seconds then 2,3 or 4 seconds and then 10 seconds again
-
timer functions
Hi there, can someone help me set a timer so that it activates an effect for 10 seconds, for example, and then turns it off for 3 seconds and turns on another one then again 10 seconds and 3 seconds ....
-
RE: node_properties.json file for costum c++ modules
@griffinboy stretchcpp.zip here is one of the files I tried that I've found online and the others where made for me.
-
RE: node_properties.json file for costum c++ modules
@griffinboy I have already tried both but in the end I only have this "MyParameter" slider in the module which has no function
-
RE: node_properties.json file for costum c++ modules
@griffinboy I've copied the .h file into the dspnetworks/thirdparty folder and the .cpp file into the src folder then I've created the node_properties.json file and named it like the .cpp file.
Then I've opened the .xcodeproj from the dspnetworks/binaries folder in xcode.
go Product > Scheme > Edit Scheme and changed Release in "Run" to Debug
and then I've Pressed play.
I can see the Module now but there is only one slider with the Name "MyParameter" and this doesn't do anything
-
RE: node_properties.json file for costum c++ modules
@griffinboy ok but why does my exported Module in HardcodedMasterFX only have this one Slider called "MyParameter"?
-
node_properties.json file for costum c++ modules
Hi there, I'm currently trying to use costum c++ modules in HISE but I don't understand what I should write in the node_properties.json file. Can anyone give me an example? Thanks
-
RE: Free Reverse Delay built in RNBO
@Mighty23 thank you! what's the process to get 2 channels tried to copy paste the process but it still says only 1 Channel
-
RE: C++ effect modules
what do I have to write in the node_properties.json file? I tried a to write my parameters inside but when I compile it I've only a slider with the Name "MyParameter"
-
C++ effect modules
Hi there, how can I use/open c++ written effects modules in HISE? no RNBO .cpp
Thanks
-
RE: Live Granular Patch for FAUST or RNBO
@DabDab I can open it too. but it doesn't sound right. I don't got any sound of it even if I change the process in the console everything I get out of it is loud noise like the gain is set to +100 it blows my speakers
-
RE: Live Granular Patch for FAUST or RNBO
this one is perfect but this doesnt work in HISE:
https://github.com/jlp6k/faust-things/tree/main
if anyone gets this to work please let me know
-
Demo Plugin
Hi there, can I use Engine.getUptime to set a gain module bypassed after 20 minutes? If yes, how? and will it stay bypassed then? thanks
-
RE: Live Granular Patch for FAUST or RNBO
@mmprod no they doesnt sound good.
-
Live Granular Patch for FAUST or RNBO
Hi there, has anyone a good and working Live Granular Modul that works in HISE? I have this jgranular patch from RNBO but it's not good. I've found a really nice FAUST .dsp but this doesn't work in HISE. Thanks