• Fill all audio loop players?

    4
    0 Votes
    4 Posts
    148 Views
    P

    @d-healey ah that's perfect, thanks a ton for the help.

  • Linux IDE’s

    10
    0 Votes
    10 Posts
    240 Views
    d.healeyD

    @dannytaurus said in Linux IDE’s:

    Ouch for having to redo your video!

    Yeah but at least it's before I've released it properly :)

    @dannytaurus said in Linux IDE’s:

    Hope the course is coming along well. I'm looking forward to it!

    Not long now

  • Create 4 input switch in ScriptNode?

    4
    0 Votes
    4 Posts
    136 Views
    DanHD

    @Allen Thanks :)

  • Default Oversampling Filter

    11
    1 Votes
    11 Posts
    912 Views
    T

    @Dan-Korneff sweet, thank you! I'm on an older comit apparently.

  • Plugin Audio Engine Not Working

    16
    0 Votes
    16 Posts
    324 Views
    F

    @d-healey sigh Alright, i figured it out. I didn't tick the "IsPluginParameter" box on the buttons and knobs. It works fine now. facepalm

    again, thanks for your patience, i appreciate it. you earned yourself a place in the "credits" screen of the plugin, which i need to figure out how to code so it shows up when a small button is pressed.

    The buttons do show up now as MIDI-controllable, but still no sound is happening (almost like a full bypass), but that i'll figure out in a bit...

  • Syncing/Time stretching via Sampler

    7
    1 Votes
    7 Posts
    433 Views
    d.healeyD

    @goldee Yes, but I've had mixed results with it. Let me know how it goes for you - https://docs.hise.audio/hise-modules/sound-generators/list/streamingsampler.html#timestretching

  • Noise feature

    10
    0 Votes
    10 Posts
    246 Views
    O

    @griffinboy let me fight it. thank you for this

  • Filter envelope - depth - modulation

    6
    0 Votes
    6 Posts
    174 Views
    LindonL

    @Christoph-Hart said in Filter envelope - depth - modulation:

    @Lindon just modulate the attack level of the envelope?

    yeah I thought of that too... the problem then is what Im doing is reducing the output of the modulator at one stage of its transit...so I did it to the sustain level too...but then Im not sure if this is exactly the same as reducing the envelope depth....its beginning to boggle my mind a bit...

  • Global Envelopes - The "filtered" voices problem.

    13
    0 Votes
    13 Posts
    283 Views
    LindonL

    @d-healey said in Global Envelopes - The "filtered" voices problem.:

    @Lindon said in Global Envelopes - The "filtered" voices problem.:

    direct its output to a named destination

    You want to route the output of the envelope to somewhere else? Doesn't it just flow up the chain to the master?

    not a Global modulation Envelope no...
  • Sampling multiple velocity layers, how to evenly drop the velocity?

    13
    0 Votes
    13 Posts
    207 Views
    CatABCC

    @Orvillain yes,I already understand the design of HISE, it is more free than Kontakt!😻

  • Is there a way to search all included .js files?

    3
    0 Votes
    3 Posts
    92 Views
    VirtualVirginV

    @aaronventure Thanks!
    This is great! What a useful feature.

  • This topic is deleted!

    1
    0 Votes
    1 Posts
    3 Views
    No one has replied
  • Global Midi Learn(not saved in preset) Possible?

    Unsolved
    16
    0 Votes
    16 Posts
    648 Views
    LindonL

    @Sawatakashi said in Global Midi Learn(not saved in preset) Possible?:

    @Lindon Hi, pardon me! how could i save and load the midi cc value individually like a preset using this script, and i can replace the default values by right clicking midi assignment on the knob UIs. Thanks, seriously I'm willing to pay for a good solution if you don't mind.

    the solution is right there in the snippet and the follow up post from me....

  • Exploring GPT Integration for Parameter Control in HISE?

    7
    0 Votes
    7 Posts
    271 Views
    A

    @marcrex Ship ollama or a similar layer with your plugin, and a model of your choice. For this you probably want a good tool calling model, like Devstral. You will need the super light version. Unsloth has a super small quant https://huggingface.co/unsloth/Devstral-Small-2505-GGUF/blob/main/Devstral-Small-2505-UD-IQ1_S.gguf but I have no idea how well it runs. Check Gemma 1b as well.

    Your system prompt needs to contain the functions that it has available for use and what each of them does.

    Define these functions in HISE.

    You'll run it by mounting the model, if not mounted, on plugin start, using BackgroundTask. These small models should be fast to mount anyway, so best to have it unload itself automatically after an hour of not using it.

    The user can then write an instruction and the model is fed system prompt + instruction via BackgroundTask. The system prompt details what it can do, the instruction tells it what to do. You want to explicitly tell it to return a "function call" in a clearly specified format (for example doThis(arg1, arg2)) and for that to be the only return, no other text.

    You should then validate the return of the BackgroundTask call, by checking that it contains a function by using string operations, and if it validates, you would call eval(return). eval() will attempt to execute the string within the code. In this case it's a function that you already defined, so it will run.

    In the end, the brunt of the work is you designing the tools (functions) that the model can call.

    This is a very simple example, if you want to chain tool calls, you'll need to feed the output of the function back into the model along with the previous prompt so that it can continue doing the work if needed.

    If you want an example of how to use eval(), I did a cool experiment here https://forum.hise.audio/topic/9086/hise-s-best-kept-secret-dynamic-plugins

    These are the limits of my current knowledge on the subject, some of these workflows may already be outdated, but hopefully I gave you a good starting point to go and explore.

    Before you download ollama and start fiddling with local inference, you can try it out instantly via OpenRouter. https://openrouter.ai/mistralai/devstral-small:free

    This free endpoint will of course use any data you send for training, but you're not gonna be sending any sensitive info, just your system prompt any whatever the user types in. For a simpler implementation (though obviously not as rock-solid) you can offer the user to enter their OpenRouter API and use the free endpoint that way, or provide your own via cloud functions, at which point it becomes a service. However, this way everyone can run the proper 24B model; on macBooks with 32+ GB of RAM it runs fine, but on Windows, VRAM isn't super easy to come by.

  • Plugin processing no sound...

    11
    0 Votes
    11 Posts
    450 Views
    Christoph HartC

    @Dan-Korneff That fix is included in the latest commits now BTW.

  • Limiter reduction parameters

    5
    0 Votes
    5 Posts
    163 Views
    ChazroxC

    @pcs800 also…Sometimes Console.print();-ing helps me find what something is doing. You can pretty much .print anything. Console. Print(); then just start moving stuff and playing stuff and see what happens.

  • Hot Key

    2
    0 Votes
    2 Posts
    64 Views
    d.healeyD

    @imnotskibidi

    ctrl+d

    Or set a custom shortcut

    f29582dd-225c-4443-bb9d-e8a5dcfe975f-image.png

  • Custom Keyboard

    4
    0 Votes
    4 Posts
    116 Views
    O

    @Christoph-Hart thank ou will give it a shot

  • HI_ENABLE_CUSTOM_NODES

    1
    0 Votes
    1 Posts
    62 Views
    No one has replied
  • This topic is deleted!

    5
    0 Votes
    5 Posts
    5 Views

23

Online

1.9k

Users

12.4k

Topics

108.4k

Posts