The wanted HISE.app file does not exist;;;, I guess is should be part of the installer yes ?
Posts
-
RE: Installiez problem on macOS Monterey
-
RE: Installiez problem on macOS Monterey
The wanted HISE.app file does not exist;;;, I guess is should be part of the installer yes ?
-
Installiez problem on macOS Monterey
I get this kind of issue with the latest HISE.4.1.0.dmg.macOS.Universal.Binary.dmg
Any idea why ?
-
RE: is it possible to load a .wav into memory for processing with faust
I don't think so. This would require using a
SoundUI
object as explained here: https://faustdoc.grame.fr/manual/architectures/#developing-a-new-soundfile-loaderBut since HISE use based on JUCE, then using the already written JuceReader should be strait forward.
-
RE: faust segfaults on zorin 17 based off ubuntu os
The lastest release is Faust 2.79.3, see https://github.com/grame-cncm/faust/releases
-
RE: faust segfaults on zorin 17 based off ubuntu os
/usr/lib/llvm-13/
this LLVM version is too old: use at least LLVM 15.
-
RE: Paid 3rd party DSP licensing? (Eventide, Sinevibes, Audio Damage etc.)
Faust lib reverbs:
https://faustlibraries.grame.fr/libs/reverbs/ can be tested here: https://faustdoc.grame.fr/examples/reverb/
Some other Faust coded reverbs here:
https://github.com/LucaSpanedda/Digital_Reverberation_in_Faust -
RE: soft_bypass and faust
@sletz Well, I just discovered that https://github.com/grame-cncm/faust/tree/master-dev-ocpp-od-fir-2-FIR. branch is still quite buggy, so no need to rush
-
RE: soft_bypass and faust
@aaronventure Trying to create binaries on the GitHub CI, but still some problems to solve.
In the meantime you can possibly try the Faust IDE Ondemand aware version: https://grame-cncm.github.io/faustide-od/
-
RE: soft_bypass and faust
@aaronventure Note that in case you can directly compile Faust + LLVM, the WIP branch with
ondemand
working is here: https://github.com/grame-cncm/faust/tree/master-dev-ocpp-od-fir-2-FIR.We are interested in feedback, in case you HISE guys can test it
-
RE: soft_bypass and faust
@aaronventure The reason is that maintaining this
enable/control
feature adds complexity in the compiler that we want now to cleanup. -
RE: soft_bypass and faust
@aaronventure Guys, we will not maintain
enable/control
for backward compatibility, so you are warned !
-
RE: Faust
This is probably because the same labels (like BOOST, ATTEN) are used in different places.
-
try to use unique labels to confirm this hypothesis
-
then @Christoph-Hart this should be considered as a bug. Same labels can be used, but will internally correspond to differents pathnames (built following the group hierarchy).
The code https://github.com/christophhart/HISE/blob/develop/hi_faust/FaustUI.h does not use the pathname model so I guess UI items with same labels will be considered the same, which is not what is needed. Look at
MapUI
code to see how labels/shornames/pathnames can be used: https://faustdoc.grame.fr/manual/architectures/#some-useful-ui-classes-and-tools-for-developers -
-
RE: FAUST Hardcoded Master FX Not modulating LFO AHDSR etc Modulation
I don't understand at all:
-
what is ""FAUST Hardcoded Master FX" ?
-
what is the problematic Faust DSP code" ?
-
-
RE: Saturation Models (Neve, Tweaker, Oxford Inflator) in FAUST
We have tools to help debugging, read:
https://faustdoc.grame.fr/manual/debugging/#debugging-at-runtime
https://faustdoc.grame.fr/tutorials/debugging/This interp-tracer tool is currently to be used in the terminal, so requires a local installation. But in theory this kind of tool could be integrated in HISE
, since the libfaust library used in HISE also embeds the needed Interpreter backend.
For more local NAN protection, using ma.EPSILON is a more portable solution, since is adapts the single/double compilation option.
-
RE: Saturation Models (Neve, Tweaker, Oxford Inflator) in FAUST
@Morphoice
abs(x) < 0.0000000000000000555111512312578270211815834045
hum seems like a non human intervention here
?
-
RE: Sounds like Vangelis?
Really nice
!
Ready to be added in the "Powered by Faust" page https://faust.grame.fr/community/powered-by-faust/ ? If yes just send me some material, screenshot, presentation text...etc..
-
RE: FFT Spectral Denoiser Faust dsp
Extract of Shihong Ren thesis "Creating an Online Platform and Tools for Real-Time Music Composition and Signal Processing"
3e5870ee-509c-4f16-880e-65c17ebfbee2-These_Shihong_REN-FFT.pdf These_Shihong_REN-FFT
-
RE: FFT Spectral Denoiser Faust dsp
@AxiomCrux No this FFT code can only work in a specialised "hacked" Faust IDE version that does FFT/iFF around the actual Faust DSP, using a social architecture, basically following the Max/MSP pfft model (https://docs.cycling74.com/legacy/max8/refpages/pfft~). This is not "official".