• FFT Display Code Causes Audio to Mute After Compiling Twice

    Unsolved
    3
    1 Votes
    3 Posts
    81 Views
    clevername27C

    @Mighty23 said in FFT Display Code Causes Audio to Mute After Compiling Twice:

    Do you mean compilation in the HISE IDE? If so, remember that for…reasons…global variables persist after programme execution ends. That means they're only variables in the machine-code compiled version—in the IDE, they the global namespace is effectively a file that gets written and read whenever you access a variable. (And no, you can't deactivate that.) Within the IDE, this can manifest as every other compilation having issues.

  • Slider strips

    7
    0 Votes
    7 Posts
    125 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
    589 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

  • Win 10 / VS 2017 HISE Build Error

    34
    0 Votes
    34 Posts
    3k 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
    130 Views
    ulrikU

    @guangcoder I’m glad it worked! 👍

  • FrontEndMacro: Display Parameter Text Instead of Parameter ID

    21
    0 Votes
    21 Posts
    525 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
    57 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.

  • What is the latest on wavetable synthesis?

    3
    0 Votes
    3 Posts
    81 Views
    O

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

  • Mac OS troubles - Export as DLL error

    2
    0 Votes
    2 Posts
    64 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
    558 Views
    V

    @MikeB Did you make it?

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

    12
    0 Votes
    12 Posts
    919 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
    72 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
    72 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
    55 Views
    No one has replied
  • Routing Matrix existential questioning and suggestions...

    15
    0 Votes
    15 Posts
    471 Views
    ustkU

    @DanH Once you get the overall latency created by your plugin, you need to report it to the DAW. It is the DAW job to compensate, but it is your job to report with Engine.setLatencySamples()

  • Confused about Exporting/Installing Expansions

    15
    0 Votes
    15 Posts
    411 Views
    bendursoB

    @d-healey Ooh, I had read that part but since I had not found that section in Hise I omitted it. I finally found it and now it works fine! Thank you :)

  • RNBO Pitch

    2
    0 Votes
    2 Posts
    111 Views
    DanHD

    @treynterrio RNBO one isn't much better. Sadly there aren't any other options at the moment afaik

  • One knob that toggles two effects on and off.

    6
    0 Votes
    6 Posts
    214 Views
    rglidesR

    @tiesvdam 👍

  • Problem clicking area's with custom preset browser

    5
    0 Votes
    5 Posts
    205 Views
    T

    @mmprod Yes i think that will fix it, i will try it today. Thanks for the help!

  • External Sidechain, I got it working

    13
    5 Votes
    13 Posts
    1k Views
    Dan KorneffD

    @HISEnberg You need to set HISE_NUM_FX_PLUGIN_CHANNELS to the amount of audio channels + sidechain channels.

36

Online

1.8k

Users

12.0k

Topics

104.6k

Posts