HISE Logo Forum
    • Categories
    • Register
    • Login
    Log in to post
    Load new posts
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics
    • All categories
    • All tags
    • Oli UllmannO

      HISE as a 3D renderer

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      16
      5 Votes
      16 Posts
      1k Views
      ChazroxC

      @Allen frickin sick. 🔥

    • N

      can we make delay node in script fx?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      7
      0 Votes
      7 Posts
      43 Views
      ulrikU

      @NISHI_MUSIC 👍

    • LindonL

      Globals, arrays and objects....

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      6
      0 Votes
      6 Posts
      37 Views
      LindonL

      @Lindon nope that aint it...something else is broken...

      and its a line in my code..so that is the solution... just need to refer to Globals explicitly

    • Felix WF

      From vocals to musical instruments

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      8
      0 Votes
      8 Posts
      87 Views
      Felix WF

      @Chazrox 😹

    • JulesVJ

      Scheduled knob task after initialization

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      9
      0 Votes
      9 Posts
      71 Views
      JulesVJ

      @dannytaurus said in Scheduled knob task after initialization:

      @JulesV Interesting! What's the use case for this, if you don't mind me asking?

      It can actually be used for other purposes.

      But in my case, I'm actually using it for a bug workaround. When I buld a complex custom node with 23 parameters and use it in HardcodedFX, I noticed that in one parameter, the knob, wasn't getting its value during plugin initialization.

      However, after init, when the knob is tweaked, the value is updated. That's why I chose this method. Creating a custom node with fewer parameters isn't a problem, by the way. As the number of parameters increases in custom nodes, the problems increase.

    • lijas90L

      Script FX audio preview in HISE: is it possible?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      4
      0 Votes
      4 Posts
      75 Views
      dannytaurusD

      @lijas90 I usually chuck an Audio Loop Player in the module tree because it allows drag and drop of audio files to test with.

    • Felix WF

      Sampler.setSoundPropertyForSelection(); seems to have a bug.

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      9
      0 Votes
      9 Posts
      133 Views
      Felix WF

      @Felix-W said in Sampler.setSoundPropertyForSelection(); seems to have a bug.:

      @CatABC said in Sampler.setSoundPropertyForSelection(); seems to have a bug.:

      @ulrik

      @d-healey said in Sampler.setSoundPropertyForSelection(); seems to have a bug.:

      @CatABC Use constants instead of magic numbers

      Sadly, I tried using constants, but the problem persists. Also, if I swap the positions of HIGH_KEY and LOW_KEY, and need to move the smaller value to the larger value, the contradiction still occurs.

      const var ComboBox1 = Content.getComponent("ComboBox1"); const var ROOT = 2; const var LOW_KEY = 3; const var HIGH_KEY = 4; const var C1 = 36; const var D1 = 38; const var E1 = 40; const var B3 = 71; inline function onComboBox1Control(component, value) { Sampler.selectSounds("C3"); if (value == 1) { Sampler.setSoundPropertyForSelection(ROOT, C1); Sampler.setSoundPropertyForSelection(HIGH_KEY, C1); Sampler.setSoundPropertyForSelection(LOW_KEY, C1); } if (value == 2) { Sampler.setSoundPropertyForSelection(ROOT, D1); Sampler.setSoundPropertyForSelection(HIGH_KEY,D1); Sampler.setSoundPropertyForSelection(LOW_KEY, D1); } if (value == 3) { Sampler.setSoundPropertyForSelection(ROOT, E1); Sampler.setSoundPropertyForSelection(HIGH_KEY,E1); Sampler.setSoundPropertyForSelection(LOW_KEY, E1); } if (value == 4) { Sampler.setSoundPropertyForSelection(ROOT, B3); Sampler.setSoundPropertyForSelection(LOW_KEY, B3); Sampler.setSoundPropertyForSelection(HIGH_KEY, B3); } }; Content.getComponent("ComboBox1").setControlCallback(onComboBox1Control);

      Ultimately, I set up two methods to call different methods depending on whether the value in the combobox increases or decreases.😹

      Wow, this method is so cool! Thank you for the code comments; they really enlightened me.

    • E

      How to add a new tab ?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      45 Views
      d.healeyD

      @Elisee18 I have an old video showing a method of doing this (it requires scripting)

      https://youtu.be/_s7LTRz8pEc

    • A

      Modules Not Nesting In Containers

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      4
      0 Votes
      4 Posts
      47 Views
      d.healeyD

      @Ajak said in Modules Not Nesting In Containers:

      the windows are driving me mad

      You can build out your module tree in the sidebar, you don't need to open the windowed view.

    • pcs800P

      Splitting incoming signal

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      14
      0 Votes
      14 Posts
      161 Views
      LindonL

      @pcs800 well 95 samples would make hardly any difference at all... whats the measured latency of your plugin?

      oh hang on youve already said:

      95.9ms, that's great. But how do I get the plugin to report that to the daw?

      Go read what @ustk said above.....

    • ulrikU

      Using Bang and Blend nodes

      Watching Ignoring Scheduled Pinned Locked Moved ScriptNode
      6
      0 Votes
      6 Posts
      232 Views
      LindonL

      @HaizalD3 bot.

    • L

      All Exports and Compilations Crashing

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      18
      0 Votes
      18 Posts
      115 Views
      L

      @d-healey Ah!! Well that can't be good. Sorry about the speakers. I'll have a read of the documentation and get to grips with scriptnode first, I've taken up more than enough of your time. Thank you very much for all your help.

    • ulrikU

      scroll event for script panel mouse callback

      Watching Ignoring Scheduled Pinned Locked Moved Feature Requests
      26
      7 Votes
      26 Posts
      8k Views
      HISEnbergH

      @HISEnberg Friendly bump on this !!

    • d.healeyD

      Invalid use of incomplete type vSIMDType

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      11
      0 Votes
      11 Posts
      723 Views
      d.healeyD

      @iamlamprey Yeah I'm not sure what's causing it because it works on my fork and I've merged all of Christoph's changes. I need to do a diff and see if I can find the source of the issue but I don't have time at the moment.

    • tsempireT

      Exciter fx Hise

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      5
      0 Votes
      5 Posts
      85 Views
      tsempireT

      @bendurso Big thx ! 👍

    • P

      Making a Vocal Strip Plugin for Livestream Mic Audio

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      2
      0 Votes
      2 Posts
      49 Views
      griffinboyG

      @PJSanre

      Nope not with visual coding.

      You need custom dsp for this. You can do those processors if you get hold of c++ stuff to plug into Hise, or get a developer.

      Autotune and good reverb is the kicker.

      Both of those are 'life's work' type effects that take years to develop from scratch, and so nobody likes to give out their implementations of those for free.

      Megaphone effect you can do in default hise using the built in convolver if you're willing to use convolution. EQ can be done that way too, or using the stock hise EQ (It's not an amazing eq I don't reccomend it) but it would work.

      I'm a perfectionist so take all of the above with a grain of salt. Maybe there is a mediocre but easy way to do it that I've never considered. But I'm fairly confident that you're out of the scope of the built in hise modules. 100% Definately out of reach if you don't want to code at all.

    • 1

      HELP! A lot of errors

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      29
      0 Votes
      29 Posts
      207 Views
      1

      @d-healey i will create new project without any snex, so i will just ignore those all troubles. Thanks for service!

    • N

      Hise compile DSP Networks as dll error

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      17
      0 Votes
      17 Posts
      101 Views
      N

      it worked @d-healey thanks ill test it now
      it worked after I placed it inside c drives vst3 file
      thanks for teaching us im so happy😊
      I've made plugins in patcher but never made vst3 plugin now I can bring my patcher plugins to life😁

    • OrvillainO

      Updating matrixTargetId attribute on a knob - results in modulation not being visible

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      3
      0 Votes
      3 Posts
      40 Views
      OrvillainO

      @Oli-Ullmann Yes I think you're correct. I checked the docs and there is a line about it not meant to be a dynamic state.

    • ustkU

      Hise as plugin with Faust and DDMF MetaPlugin

      Watching Ignoring Scheduled Pinned Locked Moved Solved General Questions
      4
      0 Votes
      4 Posts
      50 Views
      ustkU

      @HISEnberg Yes exactly! Since Hise is an instrument and PluginDoctor can only run FXs, you need to interface it with MetaPlugin first. You just get a warning in MP because Hise is still an instrument but just ignore it