HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. Recent
    Log in to post
    Load new posts
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics
    • All categories
    • All tags
    • It_UsedI

      Hise can't save hr file with hxi metadata.

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      4
      0 Votes
      4 Posts
      73 Views
      LindonL

      @It_Used actually the most versatile option is to build the content download and install into the plugin....so you only ever ship the plugin - and once it starts it checks for the content and if its not present it starts a download/install process(where you can offer the user the option on what they do and dont want to install...).

      We do this for all our (sample based) plugins these days

    • whereami518W

      Wavetable Synth Crash on note played

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      2
      0 Votes
      2 Posts
      24 Views
      ChazroxC

      @whereami518 Do you have anything scripted in onNoteOn?

    • RetromelonR

      CableBox

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      18
      0 Votes
      18 Posts
      189 Views
      RetromelonR

      Hey @Orvillan,

      No big deal if I didn’t know how to post a snippet. Better to ask than mess around blindly, right? I’m really new to coding, mostly picking it up bit by bit.

      I love making my own tools and plugins, experimenting with sounds, and sharing my stuff for free with the community. I started with Synthedit, but it’s not really modernized, so that’s why I decided to switch to HISE.

      Honestly, I’m mainly a music producer, graphic designer, and sound engineer, and I want to put all of my passions together to create the plugins that I want to make. Since coding isn’t one of my skills, I have no choice but to learn it step by step to help me further with plugin development, since HISE requires some coding knowledge to work around.

    • DanHD

      License Manager (Wordpress) Deactivation help

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      11
      0 Votes
      11 Posts
      142 Views
      It_UsedI

      @Christoph-Hart Thanks, I just don't know how to make my problem noticed, it doesn't bother me, but I had no other way out. I could write to you in private messages, but that's even worse than doing it in another post. I heard you, thanks again, and sorry again!

    • dannytaurusD

      Imgur not working in the UK is really starting to piss me off! 😂

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      7
      2 Votes
      7 Posts
      60 Views
      dannytaurusD

      @Christoph-Hart 😂😂😂

    • S

      Compile errors on Ubuntu 24.04

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      15
      0 Votes
      15 Posts
      124 Views
      S

      @d-healey Thanks David - that worked and I was able to compile the DebugWithFaust version and run it....
      Now to try a ReleaseWith Faust.....
      Thanks again for your time, help and patience 😁

    • ulrikU

      selection.set(Sampler.FileName, new path);

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      1
      0 Votes
      1 Posts
      16 Views
      No one has replied
    • pcs800P

      Muting bands in a script fx network

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      7
      0 Votes
      7 Posts
      104 Views
      resonantR

      @Orvillain When changing the crossover frequencies, I noticed some "Omph" noise problems, especially around 100Hz and below.

      This has already been mentioned in the forum several times. The compiled plugin also does this. I think it hasn’t been solved yet.

    • ustkU

      Envelope follower signal domain

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      4
      0 Votes
      4 Posts
      65 Views
      Christoph HartC

      signal detection = mod output (minus smoothing), so still not clear what's the problem, but glad you solved it :)

    • C

      Export Samples for Installer - hanging at Compressing 100%

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved General Questions
      21
      2 Votes
      21 Posts
      2k Views
      It_UsedI

      @Christoph-Hart need your help. This really needed part for big projects.
      https://github.com/christophhart/HISE/issues/798

    • d.healeyD

      Invalid use of incomplete type vSIMDType

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      9
      0 Votes
      9 Posts
      398 Views
      d.healeyD

      @Christoph-Hart Bump bump

    • Matt_SFM

      Multi Output Tutorial

      Watching Ignoring Scheduled Pinned Locked Moved Documentation
      17
      8 Votes
      17 Posts
      2k Views
      d.healeyD

      @weezycarter make a minimal test plugin with 4 channels. Then we'll have a baseline.

    • R

      random float 0. - 1. how to?

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      6
      0 Votes
      6 Posts
      50 Views
      iamlampreyI

      @Rognvald No problem 🙂

      This is a bit cleaner:

      inline function onButton6Control(component, value) { if (!value) { return; } // works the same as if (value) but the scope is a little bit cleaner local Knob1_value = Math.randInt(20, 20000); // this is already fine local Knob3_value = Math.random(); // you don't need range here, Math.random() is already within the range you're expecting Knob1.setValue(Knob1_value); Knob1.changed(); // these can be single lines if you prefer Knob3.setValue(Knob3_value); Knob3.changed(); }; Content.getComponent("Button6").setControlCallback(onButton6Control);

      If Knob1 and Knob3 already have their own Control Callbacks, you also don't need to independently call these:

      SimpleGain1.setAttribute(SimpleGain1.Gain, Knob1_value); // already handled by Knob1.changed(); SimpleGain2.setAttribute(SimpleGain2.Gain, Knob3_value); // already handled by Knob3.changed();

      Control.changed() is essentially simulating changing the control with the mouse, so you're basically calling the setAttribute function twice.

    • AGD_A

      parameter properties desappear

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      6
      0 Votes
      6 Posts
      40 Views
      AGD_A

      @Chazrox me that I'm confused 😁

    • Oli UllmannO

      Table -> Disable deletion by right-clicking

      Watching Ignoring Scheduled Pinned Locked Moved Solved General Questions
      22
      0 Votes
      22 Posts
      108 Views
      DanHD

      @DanH said in Table -> Disable deletion by right-clicking:

      No, nor me. Having curve nodes would be much more up-to-date. Is there anyone here who could write a new table which can interface with the existing Hise modules (LFO / ShapeFX)? For $$....

      Seriously though, can anyone help with this?!

    • J

      buttonpacks, panels, buttons and midi note fun...HELP! lol

      Watching Ignoring Scheduled Pinned Locked Moved Solved Scripting
      4
      0 Votes
      4 Posts
      83 Views
      J

      @ulrik ahhhhhhh! perfect! thanks so much! this really simplifies everything!

    • ustkU

      Matrix Modulator voice nullptr crash

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      11
      0 Votes
      11 Posts
      190 Views
      ustkU

      @Christoph-Hart oh awesome! Thanks!

      AGI my ass…

      Lol very true 😆

    • D

      Server.callWithPOST callback not triggered

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      5
      0 Votes
      5 Posts
      38 Views
      ustkU

      @daniloprates It appears you found it already ☺

    • HISEnbergH

      Free Reverse Delay built in RNBO

      Watching Ignoring Scheduled Pinned Locked Moved Blog Entries
      15
      11 Votes
      15 Posts
      3k Views
      JulesVJ

      @Mighty23 It seems 1000 ms is very short for low bpm and 1 bar.

      Is it possible to increase the max delay time to 5000 ms?

    • Oli UllmannO

      Build failed LAST DEV COMMIT on Mac

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      1
      0 Votes
      1 Posts
      29 Views
      No one has replied