Some Faust errors on Hise
-
@Dan-Korneff Yeah, i thought about that too, but since i have no clue of electrics, i kept that advice for me... . Maybe the example code is outdated and the library was updated in the meantime?
-
Since HISE only accepts 4 moulation sources per node
BTW this is just an arbitrary limitation and you can raise that with a preprocessor constant if you need more but it has a small impact on CPU usage so I picked whatever sensible value I thought makes sense.
-
@Christoph-Hart What would i have to type into the preprocessor definitions to extend the modulation sources amount?
-
It's called
HISE_NUM_MAX_FAUST_MOD_SOURCES
. -
@toxonic Thank you so much for the tips, Faust is very good and it'j so enjoying to use it :)
-
@Dan-Korneff I'll try this ASAP, thank you so much!
-
I am trying to run the reverbs from here: https://faustdoc.grame.fr/examples/reverb/
But I get the below errors on most of them. How to overcome this?
For example, the below one gives this error:
declare name "zitaRevFDN"; declare version "0.0"; declare author "JOS, Revised by RM"; declare description "Reverb demo application based on zita_rev_fdn."; import("stdfaust.lib"); process = dm.zita_rev_fdn_demo;
-
@harris-rosendahl Seems related to this:
https://forum.hise.audio/topic/7024/faust-channel-mismatch-how-to-tackle-it -
@ustk Thank you for the suggestion. I think this duplicating solution doesn't work every time. Maybe because of this is the demo.
This doesn't work
declare name "zitaRevFDN"; declare version "0.0"; declare author "JOS, Revised by RM"; declare description "Reverb demo application based on zita_rev_fdn."; import("stdfaust.lib"); process = dm.zita_rev_fdn_demo, dm.zita_rev_fdn_demo;
-
@harris-rosendahl i just took a look at the faust library description in the web, it seems, that this demo has 8 channels....
-
@toxonic So we can't convert it to stereo? Most of the reverbs give this error on that library page
-
@harris-rosendahl
It's always a good idea to check the examples in the Faust Web IDE (just google for it), and have a look at the diagram. There you can see, if you can simply converst a mono channel code to stereo, or if there are other channel issues:
Which reverb for example has a channel mismatch in HISE too? -
I see that, thank you so much.
Which reverb for example has a channel mismatch in HISE too?
I've come across this error on
reverbTester
,reverbDesigner
,fdnRev
andzitaRevFDN
. And as I see in the diagrams, all of them have multiple input channels.Regarding the JPVerb and Greyhole reverbs, on the Web IDE page the GRAME License has been declared.
But the license of these reverbs has been declared as GPL2+ here: https://github.com/grame-cncm/faustlibraries/blob/master/reverbs.lib
So that means these reverbs can't be used without sharing the source code? So this is not MIT License as @Christoph-Hart shared here: https://forum.hise.audio/topic/6505/faust-is-here/9
I think Licensing is very tricky in Faust :)
-
Licence of Faust functions in libraries are the choice of the contributors. Some are GPL, some MIT/BSD like...or others. Each function can have its own licensing scheme, which is usually described as a
declare licence XXX
line (see https://github.com/grame-cncm/faustlibraries/blob/master/aanl.lib#L261 for instance). -
@Christoph-Hart Any way to get more than 16 mod sources? My Faust synth needs a lot of them :)