A Faust generated code is never supposed to crash. If is does, then its a Faust compiler problem, but surely not with freeverb.
Posts made by sletz
-
RE: Reverb, Daw and Crash;(
-
RE: Faust - if/else condition multiplies the input by 6
You want the same
x
signal to go inside the cond computation (thex >= 0
) and the "then", and "else " branches right ? Then use the split<:
operator like:// Apply different fi.svf.bell filters based on the sign of the input out(x, cutoff_pos, q_pos, gain_pos, cutoff_neg, q_neg, gain_neg, drive) = x <: (ba.if(x >= 0, // If the input x is positive: x : fi.svf.bell(cutoff_pos, q_pos, gain_pos) : shaper_pos(drive), // Use positive bell filter x : fi.svf.bell(cutoff_neg, q_neg, gain_neg) : shaper_neg(drive))); // Else, use negative bell filter
-
RE: Is using Faust with Rhapsody possible?
Great initiative !
Some additional Faust DSP projects with source code can be found here : https://faust.grame.fr/community/powered-by-faust/
and here: https://github.com/grame-cncm/faust/tree/master-dev/examples -
HISE projects using Faust to be added on the "Powered By Faust" page ?
Hi HISE community,
We are always happy to add projects using Faust here: https://faust.grame.fr/community/powered-by-faust/.
Fell free to contact me if you want your project to be added.
Stéphane
-
RE: RNBO
@HISEnberg Nice ! I was the "faust community" in this precise case
-
RE: RNBO
In case it makes sense in some of your RNBO projects, we can export Faust code to RNBO, see https://faustdoc.grame.fr/tutorials/rnbo.
-
RE: ALARM ALARM - I have big problem I think....
@Lindon what is the Faust DSP code ?
-
RE: C Major another Audio language
And in case it helps, Faust can already be used with Cmajor, see: https://faustdoc.grame.fr/tutorials/cmajor/
-
RE: Ladder 4 Pole LP Filter
Possibly here: https://faustdoc.grame.fr/examples/filtering/#mooghalfladder and next ones.
-
RE: Some maths functions dont seem to be present - -faust land...
Probably a library versioning issue. They latest release: https://github.com/grame-cncm/faust/releases.
-
RE: Faust Midi (other than gate, freq, gain)
MIDI documentation is here: https://faustdoc.grame.fr/manual/midi/ and https://faustdoc.grame.fr/manual/architectures/#midi-classes for the C++ integration part.
Some JUCE/MIDI C++ glue code here: https://github.com/grame-cncm/faust/blob/master-dev/architecture/faust/midi/juce-midi.h to be used with : https://github.com/grame-cncm/faust/blob/master-dev/architecture/faust/gui/MidiUI.h