• This topic is deleted!

    1
    0 Votes
    1 Posts
    17 Views
    No one has replied
  • Script Node Tape FX

    1
    0 Votes
    1 Posts
    314 Views
    No one has replied
  • Samplers- loops -start points.....

    10
    0 Votes
    10 Posts
    661 Views
    LindonL

    @d-healey -well I can see why it isnt, the x-fade "data" hasnt been read the first time thru... but if it is a bug and it can get fixed colour me a happy camper...

    nope thinking about it more - I think you are right this is a bug...

  • ScriptSlider behaviour

    3
    0 Votes
    3 Posts
    148 Views
    ulrikU

    @d-healey Ok, I believe you 👍

  • Error Exporting Plugins in Develop HISE

    5
    0 Votes
    5 Posts
    612 Views
    David HealeyD

    @mwplugs Check in the project's .jucer file what the architectures are set to. If it's both x86 and Arm, and it compiles successfully, then it will work.

    You should also run your plugins through pluginval and auval

  • ShowControl Strange Behaviour

    9
    0 Votes
    9 Posts
    310 Views
    S

    @d-healey Ok, great. Thanks

  • Build fail - Semantics: "Reference to ‘Point’ is ambiguous"

    35
    0 Votes
    35 Posts
    5k Views
    ulrikU

    @Christoph-Hart this is your code and it works great in the standalone Hise, this is only 6 channels but it should work for more I guess :)

    // Bass side ---------------------------- inline function onOutBassControl(component, value) { // this variable checks if the output channel exists. local success = true; switch(value) { case 1: // Routes the first two input channels (= sine wave); // to the first to output channels matrix.addConnection(0, 0); matrix.addConnection(1, 1); break; case 2: // Routes the first two input channels // to the second stereo output matrix.addConnection(0, 2); // addConnection returns true if the connection could be added // if the host doesn't support multichannels, this returns false // and you can reset the connections to default later (see below) success = matrix.addConnection(1, 3); break; case 3: matrix.addConnection(0, 4); success = matrix.addConnection(1, 5); break; } if(!success) { // Reset to Channel 1+2 in case of an error matrix.addConnection(0, 0); matrix.addConnection(1, 1); } //SucessLabel.set("text", success ? "OK" : "Error"); }; Content.getComponent("OutBass").setControlCallback(onOutBassControl); // Treble side -------------------------------- inline function onOutTrebleControl(component, value) { // this variable checks if the output channel exists. local success = true; switch(value) { case 1: matrix.addConnection(2, 0); matrix.addConnection(3, 1); break; case 2: matrix.addConnection(2, 2); success = matrix.addConnection(3, 3); break; case 3: matrix.addConnection(2, 4); success = matrix.addConnection(3, 5); break; } if(!success) { matrix.addConnection(2, 0); matrix.addConnection(3, 1); } //SucessLabel.set("text", success ? "OK" : "Error"); }; Content.getComponent("OutTreble").setControlCallback(onOutTrebleControl);
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • Has the modulation system been "fixed" ?

    49
    0 Votes
    49 Posts
    7k Views
    C

    @Christoph-Hart Should I do something similar when modulating a simple gain with a similar system?

  • Reverse AudioWaveForm display?

    5
    0 Votes
    5 Posts
    291 Views
    ustkU

    Why not to grab the sample in a buffer and reverse it? Maybe not too much overhead if they are short enough?

  • Can't to export

    5
    0 Votes
    5 Posts
    609 Views
    David HealeyD

    @nouslou Try reinstalling xcpretty

  • Complile HLAC tool for standalone wav to monolith conversion

    13
    0 Votes
    13 Posts
    1k Views
    David HealeyD

    @bthj Yes you can run HISE from the terminal - I have a video about it on YouTube. I can't remember where in the source code it is but should be easy to do a text search for it once you know the available commands.

    https://www.youtube.com/watch?v=rwIfOB3WfIU

  • Shader Knobs

    9
    0 Votes
    9 Posts
    937 Views
    ?

    @crd Yeah! Me too... But getting my head around shader code, in general, is nonetheless a bit of a challenge I find! 🤯

  • Utter Confusion (LinkWindows)

    21
    0 Votes
    21 Posts
    2k Views
    ?

    @d-healey I could send them one but I think I've put them through enough troubleshooting, they went back to the Kontakt versions 😂

  • Voice at 64 some notes fade out

    2
    0 Votes
    2 Posts
    169 Views
    DanHD

    @BWSounds I’ve found synthesiser groups to be unreliable with voice amounts but haven’t had time to investigate. Are you using unison?

  • Scriptnode DSP Compilation help (again!)

    71
    0 Votes
    71 Posts
    4k Views
    DanHD

    @d-healey I wrap the node because otherwise I can't compile it to dll (it won't appear in the list).

    And yes I'm trying to reduce the cpu usage of a more complex network.

  • Scriptnode Split L+R channels

    2
    0 Votes
    2 Posts
    166 Views
    DanHD

    @DanH ah a container.multi

  • Midi Fx plugin

    10
    0 Votes
    10 Posts
    1k Views
    lalalandsynthL

    @Christoph-Hart We only need MIDI , no audio , so can it be done via the MIDI fx plugin ?

    What we need is to send a sysex stream for settings , LFO as CC and MIDI note as trigger.

    Maybe @jonhallur can chime in here as he is the one doing the programming and has got the Standalone working.

  • MIDI Out

    11
    1 Votes
    11 Posts
    1k Views
    lalalandsynthL

    @d-healey Friendly bump on this as we really need to to complete our plugin.
    We are making a MIDI retrofit kit for vintage analog synths and we would like to ship it with an standalone app and plugin.
    For this we need CC , midi note and Sysex.
    We seem to have this working with the standalone but plugin not so much.

    This would be amazing to have as a feature in HISE , not only for our kit but in general.

  • 0 Votes
    29 Posts
    4k Views
    David HealeyD

    I've opened a github issue relating to the reference monolith problem when the sample maps have different amounts of RR groups.

33

Online

2.1k

Users

13.0k

Topics

112.3k

Posts