• can we make delay node in script fx?

    General Questions
    7
    0 Votes
    7 Posts
    35 Views
  • HISE as a 3D renderer

    Scripting
    14
    5 Votes
    14 Posts
    1k Views
    N

    @dannytaurus i can agree i use chatgpt to make blender addons to ease my workflow and its terrible previous one is better

  • Globals, arrays and objects....

    General Questions
    6
    0 Votes
    6 Posts
    34 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

  • From vocals to musical instruments

    General Questions
    8
    0 Votes
    8 Posts
    83 Views
    Felix WF

    @Chazrox 😹

  • Scheduled knob task after initialization

    General Questions
    9
    0 Votes
    9 Posts
    70 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.

  • Script FX audio preview in HISE: is it possible?

    General Questions
    4
    0 Votes
    4 Posts
    74 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.

  • 0 Votes
    9 Posts
    131 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.

  • How to add a new tab ?

    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

  • Modules Not Nesting In Containers

    General Questions
    4
    0 Votes
    4 Posts
    45 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.

  • Splitting incoming signal

    General Questions
    14
    0 Votes
    14 Posts
    158 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.....

  • Using Bang and Blend nodes

    ScriptNode
    6
    0 Votes
    6 Posts
    231 Views
    LindonL

    @HaizalD3 bot.

  • All Exports and Compilations Crashing

    General Questions
    18
    0 Votes
    18 Posts
    112 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.

  • scroll event for script panel mouse callback

    Feature Requests
    26
    7 Votes
    26 Posts
    8k Views
    HISEnbergH

    @HISEnberg Friendly bump on this !!

  • Invalid use of incomplete type vSIMDType

    Bug Reports
    11
    0 Votes
    11 Posts
    721 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.

  • Exciter fx Hise

    General Questions
    5
    0 Votes
    5 Posts
    84 Views
    tsempireT

    @bendurso Big thx ! 👍

  • Making a Vocal Strip Plugin for Livestream Mic Audio

    Newbie League
    2
    0 Votes
    2 Posts
    48 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.

  • HELP! A lot of errors

    General Questions
    29
    0 Votes
    29 Posts
    205 Views
    1

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

  • Hise compile DSP Networks as dll error

    General Questions
    17
    0 Votes
    17 Posts
    98 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😁

  • 0 Votes
    3 Posts
    39 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.

  • Hise as plugin with Faust and DDMF MetaPlugin

    Solved General Questions
    4
    0 Votes
    4 Posts
    49 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