• Coming over from Kontakt? Read this!

    Pinned
    8
    1 Votes
    8 Posts
    2k Views
    LindonL

    @d-healey said in Coming over from Kontakt? Read this!:

    @Lindon They live inside Kontakt's sample map too, it's just that with Kontakt there is only one sample map and it's part of the NKI.

    I think the main different between Kontakt's groups and HISE's is that with Kontakt you can route them individually and apply effects and other processing to them individually which you can't do in HISE (yet...?).

    In HISE the routing and modulation is at the sampler level rather than the group level.

    Absoloutely - valuable stuff to include - I guess I was thinking inside a group you see a mapping of sample audio files, inside a Sample Map you see....so (to start with) same same...as a starting point. But hey no problem.

  • Help getting plugin to load in FL Studio

    3
    0 Votes
    3 Posts
    19 Views
    G

    @Simon its not even showing as being available to open in ableton and reaper has a similar issue to fl studio, showing but won't run the plugin

  • Slider strips

    7
    0 Votes
    7 Posts
    26 Views
    ChazroxC

    @xsaad check if your filmstrip is vertical or horizontal? Most are vertical but Idk you're work flow.

  • Popup-MenuBackground

    16
    0 Votes
    16 Posts
    413 Views
    mmprodM

    @whoopsydoodle https://forum.hise.audio/topic/11930/feature-request-missing-laf-colour-properties?_=1740954613418 you can’t do rounded corners as of now… it’s a missing Laf function

  • FFT Display Code Causes Audio to Mute After Compiling Twice

    Unsolved
    2
    0 Votes
    2 Posts
    14 Views
    ustkU

    @Mighty23 The snippet's working here even after compiling several times

  • Win 10 / VS 2017 HISE Build Error

    34
    0 Votes
    34 Posts
    1k Views
    D

    @d-healey Thank you sir, it works well. It turns out that my problem from the start was that I had to disable all IPPs. Now I can successfully compile Hise Standalone. Thank you very much.

    In the future, I will definitely bother you again with questions about my failures. Once again thank you very much.

  • Build Hise 4.1 on a macOS system issue

    7
    0 Votes
    7 Posts
    39 Views
    ulrikU

    @guangcoder I’m glad it worked! 👍

  • FrontEndMacro: Display Parameter Text Instead of Parameter ID

    21
    0 Votes
    21 Posts
    116 Views
    bendursoB

    @d-healey Oh, the code was fine. The export error was due to me forgetting to enable Faust in the new build of HISE 🙂

  • Error in HardcodedMasterFX after Compiling Networks with ScriptNode

    3
    0 Votes
    3 Posts
    27 Views
    S

    @soheil70 Thanks for the help. I figured out the issue: for some reason, I had CompileChannelAmount set as 4 instead of 2 in my DSP network properties.

  • Drag and Drop MIDI on Linux?

    2
    0 Votes
    2 Posts
    12 Views
    d.healeyD

    @Simon Works here on Debian testing.

  • HISE Meet Up

    117
    4 Votes
    117 Posts
    6k Views
    O

    @d-healey Cool, hopefully I can make the next one!

  • What is the latest on wavetable synthesis?

    3
    0 Votes
    3 Posts
    18 Views
    O

    @d-healey Oh! Nice one Dave! I hadn't spotted that thread, doh!

  • Wavetable Creation in 2025 - Can't get interpolation...

    8
    0 Votes
    8 Posts
    94 Views
    O

    @Christoph-Hart said in Wavetable Creation in 2025 - Can't get interpolation...:

    @DanH no it figures it out using advanced AI technology:

    numWavetables = fileLength / cycleLength.

    🤣

  • Mac OS troubles - Export as DLL error

    2
    0 Votes
    2 Posts
    20 Views
    ustkU

    @griffinboy I am using the DLL export at this very moment with the latest version successfully
    Have you tried to run Export -> Setup Export Wizard ?

    So you are saying it's the old version that doesn't have the new export window,
    and you are trying to build the last version of Hise to get this new window but the build fails?

  • Is it possible to save presets, not in the preset browser.

    6
    0 Votes
    6 Posts
    347 Views
    V

    @MikeB Did you make it?

  • Paid 3rd party DSP licensing? (Eventide, Sinevibes, Audio Damage etc.)

    12
    0 Votes
    12 Posts
    190 Views
    O

    @Straticah This is an area I've been working towards writing stuff for. Maybe we can do a skills trade??

  • Hise Stock LFO in ScriptNode - Can't find post / Snippet

    2
    0 Votes
    2 Posts
    15 Views
    modularsamplesM

    It's part of the tutorials, under ScriptnodeHiseModules:

    Link Preview Image hise_tutorial/ScriptnodeHiseModules at master · christophhart/hise_tutorial

    The Tutorial project for HISE. Contribute to christophhart/hise_tutorial development by creating an account on GitHub.

    favicon

    GitHub (github.com)

    I love this tut, so simple, but really changed how I think about LFOs. You can do some really wild things by mixing and modulating different wave shapers.

  • Issue with Custom Arpeggiator – MIDI Processor Losing Connection

    Unsolved
    2
    0 Votes
    2 Posts
    33 Views
    S

    Hi,
    I got the same problem in the past (I am not working on HISE at the moment because I don't have time) but I solved with a script.
    Pratically is the script that manage and update the ScriptProcessor SliderPacks.
    You can create an external script as Arpeggiator.js (in the Scripts folder) and in include in the Interface main script:

    include("Arpeggiator.js");

    Here the script

    // create ScriptProcessor SliderPacks array using Synth.getSliderPackProcessor(__name_of_your_script_processor__) // 0 = PitchPack // 1 = VelocityPack // 2 = LengthPack const SLIDER_PACK_PROCESSOR = Synth.getSliderPackProcessor('SyncedArpeggiator') ; const SLIDER_PACKS = [ SLIDER_PACK_PROCESSOR.getSliderPack(0), SLIDER_PACK_PROCESSOR.getSliderPack(1), SLIDER_PACK_PROCESSOR.getSliderPack(2) ]; //create your GUI SliderPacks array // **** IMPORTANT **** //!!! DO NOT SET the processorId !!! in your GUI SliderPacks const var SLIDER_PACKS_GUI = [ Content.getComponent("PitchPack"), Content.getComponent("VelocityPack"), Content.getComponent("LengthPack") ]; // create a control inline function that updates automatically the ScriptProcessor SliderPacks inline function onSliderPackControl(component, value) { local idx = SLIDER_PACKS_GUI.indexOf ( component ); for ( n = 0 ; n < component.get('sliderAmount'); n++ ) { SLIDER_PACKS[idx].setValue(n,component.getSliderValueAt(n)); } }; // set for each of the GUI SliderPack the controllCallback above (onSliderPackControl) Content.getComponent("PitchPack").setControlCallback(onSliderPackControl); Content.getComponent("VelocityPack").setControlCallback(onSliderPackControl); Content.getComponent("LengthPack").setControlCallback(onSliderPackControl);

    I hope this will help you. Contact me if you have any problem or question.

    Have a good day
    Antonio

  • Help with Degrade Parameter control settings, What do I set them as to link my knobs?

    Unsolved
    1
    0 Votes
    1 Posts
    15 Views
    No one has replied
  • How to get CPU serial number using HISE?

    29
    0 Votes
    29 Posts
    840 Views
    Dan KorneffD

    @ustk Got it sorted. Sending to beta for testing now.

27

Online

1.6k

Users

11.2k

Topics

97.6k

Posts