Unsolved Code works in FaustIDE but not in HISE.
-
I use Hise last build of version 3.X.X as I have many unfinished projects before moving to 4.
Code works in FaustIDE but not in HISE.
import("stdfaust.lib"); process = dm.vital_rev_demo;
-
-
@Mighty23 the demos are unlikely to work outside the Faust IDE....
-
@Lindon the usual error happens if I use the "extended" version
import("stdfaust.lib"); import("reverbs.lib"); // Parameters prelow = hslider("Pre Low", 0.1, 0, 1, 0.01); prehigh = hslider("Pre High", 0.9, 0, 1, 0.01); lowcutoff = hslider("Low Cutoff", 0.4, 0, 1, 0.01); highcutoff = hslider("High Cutoff", 0.7, 0, 1, 0.01); lowgain = hslider("Low Gain", 0.5, 0, 1, 0.01); highgain = hslider("High Gain", 0.5, 0, 1, 0.01); chorus_amt = hslider("Chorus Amount", 0.2, 0, 1, 0.01); chorus_freq = hslider("Chorus Frequency", 0.3, 0, 1, 0.01); predelay = hslider("Pre-delay", 0.1, 0, 1, 0.01); time = hslider("Decay Time", 0.6, 0, 1, 0.01); size = hslider("Room Size", 0.5, 0, 1, 0.01); mix = hslider("Wet/Dry Mix", 0.3, 0, 1, 0.01); process = re.vital_rev(prelow, prehigh, lowcutoff, highcutoff, lowgain, highgain, chorus_amt, chorus_freq, predelay, time, size, mix);
-
@Mighty23 what date is your HISE build?
-
@aaronventure 15/07
@Lindon I tried 3 other demos randomly and they work in HISE
-
@Mighty23 the vita_rev is most likely not part of the Faust library you‘re using.