• Simple Reverb room size time

    3
    0 Votes
    3 Posts
    631 Views
    Dan KorneffD

    @christoph-hart thank you! I'll run some measurements and figure out what's going on.

  • How to Build Step-by-Step

    6
    0 Votes
    6 Posts
    1k Views
    David HealeyD

    @danial You shouldn't need to change any paths for the SDKs, just put them in the tools/SDK folder and it should already be setup in JUCE. I believe ASIO is only required for Windows but unless you only plan on providing your plugins for Mac users you will need it. You need an account with Intel to get the IPP. I use a burner email and it's a very quick process. IPP is needed to improve the performance of all the FFT effects but most of them will still work with out it, just less efficiently.

  • Spread Velocity Mapping Video

    2
    3 Votes
    2 Posts
    456 Views
    Christoph HartC

    I am also opening the help pop up each time because I forget what velocity mode I need :)

  • Output of an FX

    1
    0 Votes
    1 Posts
    356 Views
    No one has replied
  • Animating width and heigh

    2
    0 Votes
    2 Posts
    487 Views
    David HealeyD

    @jay You already asked this...

  • 0 Votes
    19 Posts
    5k Views
    JayJ

    @mwplugs how did you manage to solve it? I can't figure it out

  • how to make a bypass button ?

    7
    0 Votes
    7 Posts
    2k Views
    musictopM

    Select the button and change parameter properties - point at your sampler in 'processorid' menu and change to -bypass in 'parameterid'.

    see the pic below.
    http://i64.tinypic.com/3088inc.png

    hope it helps!

  • Vu Meter not working on limiter

    3
    0 Votes
    3 Posts
    669 Views
    JayJ

    @d-healey I don't know how to send it as an attachment so here are it is as text:

    ============== VuMeter.js ====================

    namespace VuMeter
    {
    /** Creates a peak meter.
    *
    * Usage: Give it a reference to a module (either synth or effect).
    *
    * It looks best using a width and height with multiple of 4.
    * Customize the colours using the scriptPanel colour Ids
    */
    inline function createVuMeter(name, x, y)
    {
    local widget = Content.addPanel(name, x, y);

    Content.setPropertiesFromJSON(name, { "width": 32, "height": 100, "itemColour": 0xFF90FFB1, "itemColour2": 4279505940, "bgColour": 4279505940, "textColour": 4283782485, "saveInPreset": false, "opaque": 1 }); widget.setPaintRoutine(function(g) { g.fillAll(this.get("bgColour")); g.setColour(this.get("itemColour")); var lsize = parseInt(this.data.lvalue * (this.getHeight()-4)); var rsize = parseInt(this.data.rvalue * (this.getHeight()-4)); g.fillRect([2, this.getHeight() - lsize - 2, (this.getWidth()-4)/2-1, lsize]); g.fillRect([2 + this.getWidth() / 2 - 1, this.getHeight() - rsize - 2, (this.getWidth()-4)/2-1, rsize]); g.setColour(this.get("itemColour2")); for(i = 1; i < this.getHeight()-1; i = i + 3) { g.fillRect([1, i, this.getWidth()-2, 1]); } }); widget.setTimerCallback(function() { var lvalue; var rvalue; if(this.data.fx) { lvalue = getNormalizedPeakValue(this.data.fx.getCurrentLevel(0)); rvalue = getNormalizedPeakValue(this.data.fx.getCurrentLevel(1)); } else { lvalue = getNormalizedPeakValue(Engine.getMasterPeakLevel(0)); rvalue = getNormalizedPeakValue(Engine.getMasterPeakLevel(1)); } this.data.lvalue = Math.max(lvalue, this.data.lvalue - 0.04); this.data.rvalue = Math.max(rvalue, this.data.rvalue - 0.04); this.repaintImmediately(); }); widget.startTimer(30); return widget; }; inline function setModule(vuMeter, module) { vuMeter.data.fx = module; } inline function getNormalizedPeakValue(gain) { return 0.01 * (100.0 + Engine.getDecibelsForGainFactor(gain)); }

    }

  • Tutorial for skinning Dynamics meters?

    3
    0 Votes
    3 Posts
    827 Views
    Dan KorneffD

    @jay I found the answer somewhere on this forum a while back

  • Need Help With Limiter FX

    1
    0 Votes
    1 Posts
    330 Views
    No one has replied
  • Preset Browser

    10
    0 Votes
    10 Posts
    2k Views
    David HealeyD

    @jay It's not that difficult to code it youself. You just need a switch statement. Grab the name of the preset then load the correct sample maps based on which preset was selected.

  • VST version not work!?

    1
    0 Votes
    1 Posts
    504 Views
    No one has replied
  • Buttons value to text

    6
    0 Votes
    6 Posts
    1k Views
    David HealeyD

    @jay Go through the tutorials and by the end you should know what to do - http://hise.audio/manual/Tutorial1.php

  • VST Compile error please (solved)

    16
    1 Votes
    16 Posts
    3k Views
    S

    @d-healey Yeayyyyyyyyy !
    it's working now .
    Thank you HISE Master @d-healey .

  • Question about color!

    2
    0 Votes
    2 Posts
    796 Views
    David HealeyD

    I don't think it's possible, but white goes with everything :)

  • This topic is deleted!

    2
    0 Votes
    2 Posts
    4 Views
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    8 Views
    No one has replied
  • HISE Auto Trim demonstration

    5
    0 Votes
    5 Posts
    952 Views
    resonantR

    @d-healey Very cool, thanks...

  • Why I use HISE

    2
    4 Votes
    2 Posts
    505 Views
    resonantR

    @d-healey 👏 👏 👏 Thanks...

  • Windows 10 or 7. Visual Studio 2015 or 2017

    6
    0 Votes
    6 Posts
    970 Views
    hisefiloH

    @christoph-hart just compiled mi first .exe VI and the trickiest part was to figure out vst and asio sdks should have the exact name you posted on tutorial

19

Online

2.2k

Users

13.6k

Topics

117.9k

Posts