• Inverted threshold knob for compressor / dynamics module

    6
    0 Votes
    6 Posts
    1k Views
    rglidesR

    You can also do this after your knob callback - knbIverted.setRange(-100, 0, 0.01); - or knbIverted.setRange(0, -100, 0.01)

  • Sample Range

    2
    0 Votes
    2 Posts
    354 Views
    ChazroxC

    @pcs800 said in Sample Range:

    What is sample range and how can i use it related to convolution reverb?

    Im pretty sure 'sample range' is reffering to these markers.
    Screenshot 2025-05-25 at 8.26.40β€―PM.png

    You can set these manually and they'll save its state in your preset. If you want the user to be able to manipulate this you have to script it manually. There should be some cool snippets on the forum if you search around.

    edit**

    You could add an audiowaveform tile to your UI if you want them to control that part. If you want them to control that with a knob or slider, you have to script that part for sure.

  • 0 Votes
    10 Posts
    2k Views
    David HealeyD

    @Vlad77 said in Standalone app fails to open ASIO driver (Focusrite/PreSonus) - ASIO4ALL workaround:

    If there’s an alternative way to access it or a working link you could share,

    Use the forum search with the term "focusrite"

  • Code to load ir files is not working

    7
    0 Votes
    7 Posts
    953 Views
    ChazroxC

    @pcs800 All good. No worries! πŸ‘

  • Anything wrong with doing this? || Buffer Length

    13
    0 Votes
    13 Posts
    1k Views
    ChazroxC

    @Christoph-Hart Wow...game changer! πŸ™

    Thank you sir!

  • Preset Crash

    22
    0 Votes
    22 Posts
    5k Views
    David HealeyD

    @bendurso said in Preset Crash:

    Any other ideas regarding macros?

    Make a minimal project to test it.

  • Does Hise compile down to C++?

    7
    0 Votes
    7 Posts
    1k Views
    X

    @d-healey haha, only half the plugin's authorization is written on the plugin, we are routing it through our website's API, so it'll be a lot safer already, was just wondering if I had to do anything else to ensure even more security.

  • Handling Unloaded Effects in MasterFX Script Without Errors

    3
    0 Votes
    3 Posts
    459 Views
    T

    @HISEnberg thank you! I'll have a look now

  • AAX EXPORT HELP

    4
    0 Votes
    4 Posts
    607 Views
    David HealeyD

    @sodanswishers said in AAX EXPORT HELP:

    but I still can't get it to load in Pro Tools.

    Does it show up in the list at all?

  • Multiple Compilation & Creating Installers with a script

    2
    0 Votes
    2 Posts
    353 Views
    David HealeyD

    @JulesV Yeah you can use the HISE command line interface to compile your projects.

    If you write a batch script you can get it to run the commands automatically and generate the installer. ChatGPT is quite useful for this kind of thing, but make sure you understand the output it gives you because batch scripts are powerful things that can run any command, including deleting files.

  • export wizard issues with Projucer work

    Unsolved
    3
    0 Votes
    3 Posts
    454 Views
    R

    @d-healey nothing the popup "you need to tick this button" appear like in the photo

  • exporting Pc versions on mac

    17
    0 Votes
    17 Posts
    2k Views
    dannytaurusD

    @Matt_SF I don't target Protools users at all. I reckon my customer base and Protools users have virtually zero overlap. I'd rather lose that tiny percentage of sales than mess about with AAX and iLok. Sounds like a lot of work! 😜

    Regarding the code signing on Windows - I see folks here saying they don't do it and their Window users get on just fine with installing and using their plugins.

    If I get complaints I might look into Windows code signing, but honestly I would think seriously about only selling to Mac users rather than go down that rabbit hole. At least until they make code signing on Windows as simple as it is on Mac.

    [EDIT] That's not meant to be 'shots fired'! It's just an observation of what I see on this forum.

  • Spectral Gating

    3
    0 Votes
    3 Posts
    550 Views
    OrvillainO

    Custom c++ node.

    You can get by quite easily by using the built in Juce fft:

    // FFT object static constexpr int fftSize = 128; static constexpr int hopSize = 16; juce::dsp::FFT fft { (int)std::log2(fftSize) };

    That would create the required object. Then you'd need to write a loop process in order to call something like:

    fft.performRealOnlyForwardTransform(fftBuffer.get());

    I just wrote a node recently to process an audio buffer with FFT's. It works really well.

  • GateReduction

    4
    0 Votes
    4 Posts
    461 Views
    ChazroxC

    @pcs800

    @pcs800 said in GateReduction:

    Use a panel then

    if by that you mean script, yes. There isnt a built-in way to create a reduction meter as far as I know. You're gonna have to script a little bit.

    If you can break this down, this is how I would use it.

    const var Dynamics = Synth.getEffect("Dynamics Visual"); // declare your compressor module const var GateReduction = Content.getComponent("GateReduction"); // declare your slider const var t = Engine.createTimerObject(); // create a timer object t.setTimerCallback(function() // create a timer callback { var v = Dynamics.getAttribute(Dynamics.GateReduction); // grab the values for GateReduction v = Engine.getDecibelsForGainFactor(v); // convert to float GateReduction.setValue(v); // send value to your slider. }); t.startTimer(20); // set timer frequency aka refresh-rate
  • Compressor makeup

    4
    0 Votes
    4 Posts
    426 Views
    ChazroxC

    @pcs800 He's saying program a separate knob to compensate for that volume jump.

  • Export Setup

    2
    0 Votes
    2 Posts
    225 Views
    David HealeyD

    @Arko You need to extract the SDKs in the tools folder.

  • need a perfect Pitch Shifter

    5
    0 Votes
    5 Posts
    930 Views
    AxiomCruxA

    @treynterrio I have developed a few pitch shifters in assembly for FV-1 dsp chip, they could be ported to HISE, and I am open to working on it as a freelance project (the prior ones were also freelance work for a Folktek eurorack module)
    www.axiom-crux.net
    you can contact me at axiomcrux at gmail dot com

  • Dynamic resetting of processor ID

    5
    0 Votes
    5 Posts
    704 Views
    HISEnbergH

    @Lindon Ah that is an interesting suggestion. It seems to work exported to VST (as of now) so I will keep it that way. But if you have any suggestions for improvements let me know.

    The reason I am approaching it this way is to make a minimal code version for others to use. It's sitll pretty intense for a novice developer but it's certainly much simpler than my last method. I am making a separate post for it which I will link here:

    https://forum.hise.audio/topic/12723/modular-fx-template-changing-fx-order-with-drag-and-drop-panels

  • Resonance Suppression

    26
    1 Votes
    26 Posts
    6k Views
    mmprodM

    @JulesV I would also like to know this- I believe I tried using this before but it didn’t work in HISE. It only worked in the JSpatcher mentioned in the article

  • Imported user samples in Audio Loop Player are not saved in the preset

    28
    0 Votes
    28 Posts
    6k Views
    Xearox73X

    @d-healey

    I still have something to learn 😊
    I started with HISE in february with zero knowledge 😧
    I am a musician and not a programmer but willing to learn.
    I know about GUI design and how to build buttons or knobs, but programming is completely new territory for me.
    I just wanted to build something that I was missing somewhere else.
    When you're over 50, some things are simply more difficult, especially when it comes to something completely new.
    However, I am very happy about the helpfulness in this forum, which is not the case everywhere.
    Therefore, I apologize for a few stupid questions that are sure to come πŸ˜† πŸ˜‚

24

Online

2.1k

Users

13.1k

Topics

113.3k

Posts