HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. treynterrio
    3. Best
    T
    • Profile
    • Following 0
    • Followers 0
    • Topics 92
    • Posts 453
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: timer functions

      @Oli-Ullmann it worked without any problems

      posted in General Questions
      T
      treynterrio
    • FFT Spectral Denoiser Faust dsp

      Hi there, I found a .pdf file with a Faust code for FFT spectral denoising and other spectral stuff I fixed a couple things in the code and can open it in the Faust WEB editor but I don't get any sound only a little sound at the beginning.
      Maybe someone could check that and fix this

      import("stdfaust.lib");
      
      fftSize = hslider("fftSize", 1024, 2, 16384, 1);
      
      bufferSize = fftSize / 2 + 1;
      
      cartopol(x, y) = sqrt(x * x + y * y), atan2(y, x);
      
      poltocar(r, theta) = r * cos(theta), r * sin(theta);
      
      freezeBtn = checkbox("Capture");
      
      reduceSld = hslider("Reduce", 0, 0, 2, 0.01);
      
      freeze(rIn, iIn, bin) = out with {
          freezeSignal(sig, frz) = orig + freezed with {
              orig = sig * (1 - frz);
              freezed = (orig : @(bufferSize)) + (orig * frz : @(bufferSize - 1)) * frz;
          };
          out = freezeSignal(rIn, freezeBtn), freezeSignal(iIn, freezeBtn);
      };
      
      fftproc(rIn, iIn, bin) = out with {
          pol = cartopol(rIn, iIn);
          mag = pol : _, !;
          phase = pol : !, _;
      
          pol_frozen = freeze(rIn, iIn, bin) : cartopol;
          mag_frozen = pol_frozen : _, !;
          phase_frozen = pol_frozen : !, _;
      
          out = poltocar(max(mag * (1 - freezeBtn) + (mag - mag_frozen * reduceSld) * freezeBtn, 0), phase);
      };
      
      process = fftproc;
      
      posted in General Questions
      T
      treynterrio
    • RE: Live Granular Patch for FAUST or RNBO

      @DabDab I can open it too. but it doesn't sound right. I don't got any sound of it even if I change the process in the console everything I get out of it is loud noise like the gain is set to +100 it blows my speakers

      posted in General Questions
      T
      treynterrio
    • RE: Issue with Font Not Displaying in Exported HISE Project

      @Oli-Ullmann I was only able to solve the problem by loading it from a .json file. Which was then saved by pressing a button

      posted in General Questions
      T
      treynterrio
    • RE: change size of "Add preset" window

      @d-healey this works for me to now, thank you!!!

      posted in General Questions
      T
      treynterrio
    • RE: Preset browser font size

      @d-healey ok now I've seen what I've doing wrong

      posted in General Questions
      T
      treynterrio
    • RE: change Simple Envelope release value

      @d-healey when I hold the loop it loops until I release it and then it takes 50 to loop out

      posted in General Questions
      T
      treynterrio
    • How should I save my Sampler Presets and how can I access them later?

      Let's say I'm going to make a VST and I create each preset with just a one shot in the Sampler. How do I save these presets so that I can open them again afterwards?

      Can I create a dropdown menu to choose my preset at the end?

      posted in Presets / Scripts / Ideas
      T
      treynterrio
    • RE: Synchronizing Loop Lengths Between Two Loopers

      @d-healey Got it working!

      posted in Scripting
      T
      treynterrio
    • RE: one Button with many options

      @d-healey got it to work

      posted in Scripting
      T
      treynterrio
    • RE: Carousel like Panel change

      @Natan thats what I'm looking for! thank you

      posted in Scripting
      T
      treynterrio
    • RE: Knob to change ms of a Timer

      @d-healey now it works! thanks for your time and help

      posted in Scripting
      T
      treynterrio
    • RE: permanently displayed text

      @d-healey ok I finally got it!!! thanks for your help I really appreciate that

      posted in Scripting
      T
      treynterrio
    • RE: Passwort Protection "Enter E-Mail"

      @Lindon is there another thread or something that explains what to do because I couldn't follow anymore at step 2 :D
      I've created a RSA Key Pair and now?

      I found this but this makes no sense to me:
      https://forum.hise.audio/topic/8786/hise-rsa-not-working?_=1712747148847

      posted in Scripting
      T
      treynterrio
    • RE: Passwort Protection "Enter E-Mail"

      @d-healey this preset is not a container file is the error I get

      posted in Scripting
      T
      treynterrio
    • RE: Link Delay Feedback L/R

      @d-healey ok that makes it a lot easier to know that I could click on create generic script reference. everything works perfect now. thanks :raising_hands_medium-light_skin_tone:

      posted in Scripting
      T
      treynterrio