• How to reliably save samplemaps in preset? (Expansions)

    Solved
    11
    0 Votes
    11 Posts
    2k Views
    Oli UllmannO

    @Christoph-Hart
    Ah, I see. Thanks for explaining!

  • 3 Votes
    1 Posts
    499 Views
    No one has replied
  • Install/choose sample window wont close

    14
    0 Votes
    14 Posts
    2k Views
    C

    @d-healey Do the resource and the post install script need to be code signed? And both pkg?

  • Wordpress plugin to block temp mail signups

    14
    6 Votes
    14 Posts
    1k Views
    David HealeyD

    I made a little update so it works with the wordpress comments form too.

    temp-mail-shield.zip

  • RNBO in Hise works but not after plugin export

    9
    0 Votes
    9 Posts
    2k Views
    F

    @ulrik Blinded by the MIDI SFX plugin option I never thought MIDI would be supported when exporting it without. Turned out I had to export as SFX Plugin, not as MIDI SFX Plugin... even though the plugin relies on MIDI. This works at least on Windows in Steinberg/Nuendo and VST3. Now I'll figure out if this is also the case on AU mac...

    I suppose MIDI SFX Plugin is for pure MIDI plugins then, not supposed to handle audio at all?

  • Is it possible to get a wider Q shape?

    3
    0 Votes
    3 Posts
    816 Views
    griffinboyG

    @Dan-Korneff
    @WillowWolf

    Indeed.
    Creating a custom filter is your best bet.

    Digital SVFs are a particular topology which have limits to the shapes you can make with them. There are a few different methods to choose from to create digital filters with more flexible frequency responses.

  • I'm looking for help with a paintroutine

    3
    0 Votes
    3 Posts
    304 Views
    M

    @ustk a little oversight that was driving me crazy, thanks

  • LFO Loop Mode

    3
    0 Votes
    3 Posts
    742 Views
    modularsamplesM

    Consider building an LFO in scriptnode instead (there's really helpful example in the tutorial repository that should get you started), you can then set your LFO to one-shot by setting the ramps LoopStart parameter to 1.0.

  • Tag system in preset browser

    2
    0 Votes
    2 Posts
    573 Views
    G

    Hello is there any one to guid me through it or how I learn more about it

  • How to make "drag and drop" in interface?

    5
    0 Votes
    5 Posts
    721 Views
    David HealeyD

    @HarveySmith Possibly, it depends on exactly what you want to do. Another option is to add a waveform component to the UI and link it to your granulator (if that's possible). The waveform component has built in drag n drop.

  • Scriptnode compilation error on Mac

    3
    0 Votes
    3 Posts
    541 Views
    O

    @Oriah-Beats sorry for the long thread here is a better one

    Screenshot 2025-09-13 at 16.58.55.png

  • HISE / WaveTableController -> Audio formats

    3
    0 Votes
    3 Posts
    591 Views
    Oli UllmannO

    @d-healey
    Okay, I'll try that too. Thanks. :-)

  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    3 Views
    No one has replied
  • peak meters not rendering in compiled plugin

    10
    0 Votes
    10 Posts
    1k Views
    J

    @jeffd
    ok that was my problem.
    i needed to set the array for the channelIndexes

  • Feed live signal to Stretch Player Node

    10
    0 Votes
    10 Posts
    1k Views
    O

    @HISEnberg I am abit lost but let me do more research and see if I can implement this

  • Correlation

    5
    0 Votes
    5 Posts
    700 Views
    M

    @udalilprofile
    I tried to do it in FAUST, then the value in the UI must be made with a global_cable and draw its value in a panel.

    import("stdfaust.lib"); //============================================================================== // CORRELATION METER // // A stereo phase correlation meter that outputs a value between -1 and +1 // indicating the phase relationship between left and right channels. // // +1 = fully correlated (mono) // 0 = fully decorrelated (wide stereo) // -1 = fully anti-correlated (out of phase) //============================================================================== // Integration time constant (in seconds) - typical range 10-100ms integration_time = hslider("Integration Time", 0.05, 0.01, 0.2, 0.001); // Small constant to prevent division by zero epsilon = 1e-10; // FAUST has a function for this but I'm lost and would like to close the implementation -.-' // Low-pass filter cutoff frequency based on integration time lpf_freq = 1.0 / (2.0 * ma.PI * integration_time); // Basic correlation meter implementation correlation_meter = _ , _ : correlation_calc with { correlation_calc(l, r) = lr_filtered / (sqrt(l2_filtered * r2_filtered) + epsilon) with { // Cross-correlation term (L * R) lr_filtered = (l * r) : fi.lowpass(1, lpf_freq); // Auto-correlation terms (L² and R²) l2_filtered = (l * l) : fi.lowpass(1, lpf_freq); r2_filtered = (r * r) : fi.lowpass(1, lpf_freq); }; }; // Alternative implementation using sum/difference method correlation_meter_alt = _ , _ : correlation_calc_alt with { correlation_calc_alt(l, r) = (sum_power - diff_power) / (sum_power + diff_power + epsilon) with { sum_sig = (l + r) * 0.5; diff_sig = (l - r) * 0.5; sum_power = (sum_sig * sum_sig) : fi.lowpass(1, lpf_freq); diff_power = (diff_sig * diff_sig) : fi.lowpass(1, lpf_freq); }; }; // Algorithm selector algorithm = nentry("Algorithm", 0, 0, 1, 1); // Main correlation calculation with algorithm selection correlation_calc = _ , _ <: (correlation_meter, correlation_meter_alt) : select2(algorithm); // Correlation meter with UI elements - following the vumeter pattern cmeter(l, r) = attach(l, correlation_calc(l, r) : hbargraph("Correlation", -1, 1)), r; // Process function - stereo input, stereo passthrough with correlation display process = cmeter;

    Two different correlation calculation:

    Direct method using L*R / sqrt(L² * R²) Sum/difference method using (S² - D²) / (S² + D²)

    Adjustable parameters:

    Integration time (10ms to 200ms) Algorithm selection

    Real-time display:

    Horizontal bargraph showing correlation value

    As for the implementation in HISE (UI) you need to connect the hbargraph in a
    global_cable scriptnode and draw the "bar" in a panel - this is more complicated for me 😧

    Since I'm still a newbie, it would be a good idea to properly test the implementation before putting it "into production"

  • Modulating in Scriptnode with an Oscillator - what am I doing wrong?

    3
    0 Votes
    3 Posts
    476 Views
    M

    @Christoph-Hart
    6252a86c-bf97-41c8-9aa1-39fc9d0979fb-image.png

    Oh, rightly so, the frequency was too high. It works now—thanks.

  • Audiowaveform CSS for sampler crashing

    1
    0 Votes
    1 Posts
    263 Views
    No one has replied
  • AAX showing under audiosuite but not inserts

    21
    0 Votes
    21 Posts
    2k Views
    ustkU

    @d-healey Oh yeah sorry… but since it’s not that important for instruments anyway

  • Woocommerce Demo version quesion

    18
    0 Votes
    18 Posts
    1k Views
    DanHD

    @ustk yep, it's a pain

46

Online

2.1k

Users

13.0k

Topics

112.8k

Posts