• Mono delay

    9
    0 Votes
    9 Posts
    390 Views
    ChazroxC

    @ustk The generosity of the man.

  • How to wrap text in a Label?

    3
    0 Votes
    3 Posts
    266 Views
    CatABCC

    @DanH Hahaha, it's so simple, thank you very much for your guidance๐Ÿ˜™

  • The delay module temposync slider popup

    36
    0 Votes
    36 Posts
    8k Views
    d.healeyD

    @pcs800 I'm not sure, effects are not my strong area

  • Is it possible to merge two ch1 files?

    7
    0 Votes
    7 Posts
    745 Views
    CatABCC

    @d-healey Okay, thanks David.๐Ÿฅ‚

  • Mac FX failing pluginval.....

    24
    0 Votes
    24 Posts
    2k Views
    LindonL

    @Christoph-Hart said in Mac FX failing pluginval.....:

    @Lindon said in Mac FX failing pluginval.....:

    DLL?, If so then if its broken(corrupt) for one HCFX shouldn't it be broken for all of them?

    Yes, but the error you describe is not a deterministic programming logic error but a case of undefined behaviour - something in there is not clearing the buffers correctly and this may or may not result in trash values being in there which is what pluginval complained about.

    Okay, well its all a bit academic and I dont want to monopolise your time, but that sorta doesnt jive with my understanding(which may well be where the fault lies)... these HCFX are simple filters, and there is no signal being sent thru them by pluginval, and they work fine in 3 cases (slots 1,2, & 4) but not a 4th(slot 3), where all cases are exactly the same "piece of code". One of them is generating "something unpleasant"(tm) which I might thing was the cumulative effect of the previous signal modifications, but then the 4th slot should accept this unpleasant output and reproduce it again, and it doesnt....

    So bypass slot 3, but include slots 1,2, & 4 = passes
    Bypass Slot 4, and include 1,2 & 3 = fail
    bypass everything except 3 = fail
    Bypass any combo that includes slot 3 = pass

    well never mind this bit is working, more pressing issues(like the macro modulators not working at all...)

  • Macro Modulators in FX

    9
    0 Votes
    9 Posts
    842 Views
    ustkU

    @Christoph-Hart Clever! ๐Ÿ˜Ž can't wait for it!

  • Question about 3rd party expansions with HISE commercial license

    6
    0 Votes
    6 Posts
    834 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
    941 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
    891 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
    871 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
    319 Views
    No one has replied
  • Selecting a whole block of code

    3
    0 Votes
    3 Posts
    545 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
    685 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
    248 Views
    No one has replied
  • Modulation Matrix header and plotter CSS

    Solved
    4
    1 Votes
    4 Posts
    510 Views
    Christoph HartC

    @ustk sure you can use a laf script function as always.

  • Modulation range not absolute?

    17
    0 Votes
    17 Posts
    836 Views
    Oli UllmannO

    @DanH
    Okay, I totally understand what you mean!

  • Macro Modulator curve?

    7
    0 Votes
    7 Posts
    661 Views
    P

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

  • Make the Gain knob smooth the gain?

    79
    0 Votes
    79 Posts
    6k Views
    GUJIANG

    @CatABC Send a complete example to learn from

  • Compressor

    10
    0 Votes
    10 Posts
    455 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

23

Online

2.0k

Users

12.7k

Topics

110.1k

Posts