HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. sletz
    3. Posts
    S
    • Profile
    • Following 0
    • Followers 1
    • Topics 4
    • Posts 90
    • Groups 0

    Posts

    Recent Best Controversial
    • 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-loader

      But since HISE use based on JUCE, then using the already written JuceReader should be strait forward.

      posted in General Questions
      S
      sletz
    • 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

      posted in Bug Reports
      S
      sletz
    • 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.

      posted in Bug Reports
      S
      sletz
    • RE: Paid 3rd party DSP licensing? (Eventide, Sinevibes, Audio Damage etc.)

      @Lindon

      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

      posted in General Questions
      S
      sletz
    • 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 😧

      posted in Faust Development
      S
      sletz
    • RE: soft_bypass and faust

      Yes, the code is easy to adapt.

      posted in Faust Development
      S
      sletz
    • 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/

      posted in Faust Development
      S
      sletz
    • 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 😊

      posted in Faust Development
      S
      sletz
    • 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.

      posted in Faust Development
      S
      sletz
    • RE: soft_bypass and faust

      @aaronventure Guys, we will not maintain enable/control for backward compatibility 😖, so you are warned !

      posted in Faust Development
      S
      sletz
    • 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

      posted in Faust Development
      S
      sletz
    • 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" ?

      posted in Bug Reports
      S
      sletz
    • RE: Saturation Models (Neve, Tweaker, Oxford Inflator) in FAUST

      @Mighty23

      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.

      posted in ScriptNode
      S
      sletz
    • RE: Saturation Models (Neve, Tweaker, Oxford Inflator) in FAUST

      @Morphoice abs(x) < 0.0000000000000000555111512312578270211815834045

      hum seems like a non human intervention here 😊 ?

      posted in ScriptNode
      S
      sletz
    • 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..

      posted in General Questions
      S
      sletz
    • 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

      posted in General Questions
      S
      sletz
    • 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".

      posted in General Questions
      S
      sletz
    • RE: Modulator Intensity/Depth in FAUST, best practice?

      @Morphoice the first 1* part is just useless right ? (also Faust will optimise this itself of course)

      posted in Faust Development
      S
      sletz
    • RE: HISE Meet Up

      Nice to meet you guys ! Sorry for coming late, I will be more prepared next time.

      posted in General Questions
      S
      sletz
    • RE: Faust compiler options

      @whoopsydoodle

      • I don't remember in detail how the HISE Faust DSP wrapper works (that is the code this connect Faust DSP to the HIS audio layer) but possibly it already adapts input/output audio buffers
      • and yes the proper way would be to open access to the compiler options in the Faust LLVM JIT path as well as the C++ generation path, but I don't where it can be done. @Christoph-Hart has to help here.
      posted in General Questions
      S
      sletz