HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. Allen
    3. Posts
    A
    • Profile
    • Following 0
    • Followers 0
    • Topics 22
    • Posts 77
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: Roadmap to HISE 5

      @Christoph-Hart
      Thank you! That's awesome!
      I'm ready to deep dive into the new wavetable engine!

      posted in General Questions
      A
      Allen
    • RE: Wavetable Post FX processers

      @d-healey

      Thank you!

      Seems like it should be a fx array in a specific format...

      posted in General Questions
      A
      Allen
    • RE: Wavetable Post FX processers

      @d-healey

      I've checked the wavetable creator before and didn't find it...

      HISE -2025_07_14 23_50_03.png

      I think this might be a part of the new WavetableController Class, which is probably haven't been documented yet

      there's a api for this but i don't know what the var supposed to be here

      So i wonder if anybody has tried this before

      posted in General Questions
      A
      Allen
    • RE: Wavetable Post FX processers

      @d-healey

      sorry my bad... here's the github page:

      Link Preview Image
      HISE/hi_core/hi_modules/synthesisers/synths/WavetableSynth.h at develop · christophhart/HISE

      The open source framework for sample based instruments - HISE/hi_core/hi_modules/synthesisers/synths/WavetableSynth.h at develop · christophhart/HISE

      favicon

      GitHub (github.com)

      basically a bunch of functions in the PostFXProcessor.

      posted in General Questions
      A
      Allen
    • Wavetable Post FX processers

      WavetableSynth.h - HISE-develop - Visual Studio Code 2025_07_14 23_24_59.png WavetableSynth.h - HISE-develop - Visual Studio Code 2025_07_14 23_25_09.png

      Just discovered this in WavetableSynth.h

      Anyone tried this before? How to use this in Hise?

      I'm wondering if i could use my own warp functions here.

      posted in General Questions
      A
      Allen
    • RE: 'MACOSX_DEPLOYMENT_TARGET' is set to 10.7, but the range of supported deployment target versions is 10.9 to 11.1.99.

      I just ran into this issue with xcode 15.0

      Anybody solved this?

      posted in General Questions
      A
      Allen
    • RE: Create 4 input switch in ScriptNode?

      You could simply do it with 3 toggles

      HISE - dragon 2025_07_07 22_22_03.png

      In1= A0 C0
      In2= A1 C0
      In3= B0 C1
      In4= B1 C1

      posted in General Questions
      A
      Allen
    • RE: How to setup a WebSocket Sever

      @d-healey Thank you! That helps!

      I forgot there's also a document repo on github....

      posted in General Questions
      A
      Allen
    • RE: How to setup a WebSocket Sever

      yeah, but seems like something is missing here...

      hisedoc.png

      posted in General Questions
      A
      Allen
    • How to setup a WebSocket Sever

      Some codes in the in the document is partially missing.

      Is there a WebSocket Sever snippet?

      posted in General Questions
      A
      Allen
    • Hise crashes when loading samples into buffers in a C++ node

      I have a external c++ node(rnbo) with several buffers and hise crushes when i feed samples into these buffers (no always but samples longer then 10s will definitely crash)

      The dump file shows it was a Access Violation(0xc0000005) so I think maybe i didnt setup and check the buffers properly.

      posted in General Questions
      A
      Allen
    • get values from a webview

      currently what's the best way to get a value of a variable in a webview?

      I checked the webviewtest in hise tutorial but seems like the callFunction cannnot send the value to Hise properly.

      posted in General Questions
      A
      Allen
    • RE: Analog Noise in my fx plugins

      @goldee
      Of course you can simlply use a sampler to do this.
      You can also try something like "micro sidechain" (which is basically inject the noise aound the 0 point) might give you a more natural sounding result

      posted in General Questions
      A
      Allen
    • RE: Crash - can someone confirm?

      I tried this with three diiferent versions of Hise and one got crashed (961d7d9).

      Here's debug result

      FloatingTile.cpp (Debugging).png

      I not sure but seems like there's a conflict occurred when the floating tile loading contents.

      posted in Bug Reports
      A
      Allen
    • RE: Parameter Smoothing

      @dannytaurus

      sorry this example maybe a lil bit misleading.. the "True Neutral" one looks lightweight because it is no smoothing, like a control group.

      For the cpu usage, i'd say all of them are almost the same (excpet the "Chaotic Neutral" one are a lil bit higher but it actually does more things) Some of these are pretty versatile but none of these are work perfectly in all cases...

      posted in Presets / Scripts / Ideas
      A
      Allen
    • Parameter Smoothing

      smooth2.png

      Recently I made this max gen patch which is a collection of all of parameter smooth algorithms i 've ever used in my dsp network (which is basicly for fun)

      I personally use the "Chaotic Good" one the most , which is basically "delta value threshold + linear ramp + 0 detection" (almost used in 90% of my third party node)

      One thing i'm pretty curious about is what is the most common smoothing algorithm that everybody is using now?
      I found i really got no idea about this...

      posted in Presets / Scripts / Ideas
      A
      Allen
    • RE: I wasted 3 hours on deepseek trying to create Autotune, Reverb and Delay in Hise

      AI is currently really bad at writing DSP code.

      the reverb&delay code is really looks like something from r/programminghorror btw
      I can already hear the pop and clicks followed by a loud-ass feedback lol.

      posted in Scripting
      A
      Allen
    • RE: How to use a mute device

      You could try something simple first like one button mute one device.

      the only thing you need to do is reference the device and then call .setBypassed(1-value) in the button callback.

      Then you could reference everything in an array or just simply write the same thing for each device separately.

      posted in General Questions
      A
      Allen
    • RE: The world of HISE

      Allen, 23, Tokyo,
      Whiskey lover/Music producer/Songwriter/Programmer/Visual&Interaction designer/DJ and sometimes play guitar and keyboard in bands or solo.

      I make dsp stuffs in maxmsp for about 6 years before i found HISE. And currently i'm making a relatively large synth project in HISE.

      posted in General Questions
      A
      Allen
    • RE: Animated images on the interface

      that pretty cool!

      You could also try slider + ramp , which is like a normal animation player.
      I remember the linear ramp node in hise has a 1000ms limit so you may need to make a custom node to play longer animation

      posted in Presets / Scripts / Ideas
      A
      Allen