• Macro Modulators in FX

    9
    0 Votes
    9 Posts
    965 Views
    ustkU

    @Christoph-Hart Clever! 😎 can't wait for it!

  • Question about 3rd party expansions with HISE commercial license

    6
    0 Votes
    6 Posts
    892 Views
    LindonL

    ..actually lets have a slightly more convoluted example - because I was actually thinking about doing this:

    Lets say the player is free, and I work with 10 designers, each gets 70% of their expansions sales, so as a total Im getting 30% of all sales, and each designer in turn is getting 7% of all sales - assuming some sort of even spread of sales across all expansions...

  • Paste screenshot in HISE plugin?

    13
    0 Votes
    13 Posts
    1k Views
    ustkU

    @Oli-Ullmann said in Paste screenshot in HISE plugin?:

    That sounds interesting! To do that, you would definitely have to check which OS is being used, as different operating systems use different folders. I'm also not sure if this can be configured individually for some operating systems... Tricky! 😁

    This could just be asked to the user at first launch and stored in a pref file

    Then background task to run a bash script (but yeah this one is OS dependent)

    https://forum.hise.audio//post/101582

  • Preset browser and expansions again...

    4
    0 Votes
    4 Posts
    1k Views
    d.healeyD

    Fixed the presets not showing up unless the expansion column is visible

    https://github.com/christophhart/HISE/pull/772

  • DisplayBuffer in compiled network causing crash

    8
    0 Votes
    8 Posts
    977 Views
    D

    @HISEnberg (cc: @ulrik ) oh yes, and thank you, but that's not quite the problem. I've successfully compiled HISE and other VST/AU/AAX plugins with 32 outs. I've also compiled other DSP networks successfully before while utilizing all 32 outs, but never any with an external display buffer.

    Something about having the extra channels in HISE is messing with any use of External DisplayBuffer in a compiled dll and causing a crash.

    If anyone else can replicate this issue or give me a point in the right direction I'd much appreciate it: If HISE is compiled with the extra preprocessor tag NUM_MAX_CHANNELS=32, compiled DSP networks using an External DisplayBuffer cause a crash when loading into Hardcoded MasterFX (due to some sort of channel number mismatch)

    Thanks again 🙏

  • Live Granular Patch for FAUST or RNBO

    16
    0 Votes
    16 Posts
    2k Views
    Oli UllmannO

    @HISEnberg
    Ah ok, thank you for the info! :-) Then I have to search for another granular solution.

  • Matrix Modulation intensity not styling negative values

    1
    0 Votes
    1 Posts
    327 Views
    No one has replied
  • Selecting a whole block of code

    3
    0 Votes
    3 Posts
    571 Views
    dannytaurusD

    @VirtualVirgin The editor drives me batty. It functions so differently to what I'm used to that I'm constantly making subtle typos that fail to compile.

    I'm looking into coding in my familiar code editor and hopping back to HISE just to hit F5. Thinking about it, there might even be a way to automate it. Set up a file watcher and every time a script file int he HISE project is saved, tell HISE to compile. 🤔

  • Apple, and the interminable oddness implied by that name........

    10
    0 Votes
    10 Posts
    880 Views
    LindonL

    @d-healey yeah sorry my slow half typing skills...

  • Matrix Modulation AUX connection not reflecting in knob's lastModValue

    1
    0 Votes
    1 Posts
    258 Views
    No one has replied
  • Modulation range not absolute?

    17
    0 Votes
    17 Posts
    1k Views
    Oli UllmannO

    @DanH
    Okay, I totally understand what you mean!

  • Macro Modulator curve?

    7
    0 Votes
    7 Posts
    757 Views
    P

    @Christoph-Hart Ah ok, thanks for the info.

  • Compressor

    10
    0 Votes
    10 Posts
    645 Views
    griffinboyG

    @ustk

    Yeah of course if it's c++ dsp, you can just use a global cable to send the graph to the UI
    Keep a second, mono class of the compressor dsp without envelopes, and when a paramter changes, compute the response (staggered updates) using that instance and send it as a json to the UI side of Hise.

    But you can even do this in Hise if you want. I doubt the compressor algorithm is complex. Just write it as Hise script and process your line through it.
    Without envelopes, a compressor is a waveshaper. It'll just be a simple algo

  • HISE not auto detecting loop in wav file with embedded loop markers

    Unsolved
    2
    0 Votes
    2 Posts
    224 Views
    M

    This has already been discussed somewhere here.
    The “Extract Metadata for Mapping” button is not in sync with the internal variable. That means it may appear to be on, but it’s actually off. A simple workaround is to toggle the button off and on again.

    @Christoph-Hart , I think this can be easily fixed in FileImportDialog on line 39:

    metadataButton->setToggleState(true, sendNotification);
  • New Global Mod node in Scriptnode

    1
    2 Votes
    1 Posts
    120 Views
    No one has replied
  • SlotFX (Hardcoded) Persistence?

    9
    0 Votes
    9 Posts
    593 Views
    iamlampreyI

    @HISEnberg said in SlotFX (Hardcoded) Persistence?:

    Engine.addModuleStateToUserPreset(var moduleId)

    Yeh this seems to be working, I still have a dereferenced nullptr on the interface somewhere when I try and delete the plugin that I have to track down but otherwise it's doing the thing

  • Random Presets

    19
    0 Votes
    19 Posts
    1k Views
    cassettedeathC

    @cassettedeath Scratch that

    Incase anyone encounters the same issue I did, I used

    var myPresetList = Engine.getUserPresetList(); const var RandomPreset = Content.getComponent("RandomPreset"); inline function onRandomPresetControl(component, value) { if(value) { // Get the current list of presets from disk local presets = Engine.getUserPresetList(); if(presets.length > 0) { // Pick a random index local index = Math.floor(Math.random() * presets.length); // Load it by name with the .preset extension Engine.loadUserPreset(presets[index] + ".preset"); } else { Console.print("No user presets available."); } } } RandomPreset.setControlCallback(onRandomPresetControl);
  • Compile With Debug Symbols

    2
    1 Votes
    2 Posts
    226 Views
    iamlampreyI

    this is happening to me too, and is preventing me from properly debugging a crash @Christoph-Hart

  • Split SampleMap?

    3
    0 Votes
    3 Posts
    138 Views
    CatABCC

    @d-healey OK, I understand, thank you David

  • How to Relink Samples in HISE After Migrating from Windows to Mac?

    10
    0 Votes
    10 Posts
    448 Views
    d.healeyD

    @lijas90 You have to put them in the folder before you map them.

    So now you have the choice, either you can remap them - which is what I would do if it's not too many samples.

    Or you can edit the xml file to use the wildcard instead of the absolute path.

27

Online

2.0k

Users

12.9k

Topics

111.4k

Posts