• Re: How to make a guitar tuner

    4
    0 Votes
    4 Posts
    176 Views
    A

    @11235813

    Link Preview Image fft scritpnode analyzer

    @yall Seems to work fine here.. This is just an adaptation of the visualisation snippet, simply replacing the peak node with FFT does the trick. HiseSnippet...

    favicon

    Forum (forum.hise.audio)

    See if you can modify this to suit your needs.

  • Preset creation disabled on Mac

    Solved
    4
    0 Votes
    4 Posts
    342 Views
    O

    Issue was unrelated to HISE. The "User Preset" folder had admin privileges set to "Read-Only". Altered the settings of the installer to fix the issue.

  • Global Velocity Mod + Arpeggiator = Note Dropouts

    9
    0 Votes
    9 Posts
    300 Views
    bendursoB

    @DanH Thanks. I also just realized that it only happens with Vel Mod inside Global Modulators. In my case I can use Velocity Modulators directly in the Samplers and it works ok.

  • How to test for a NaN

    9
    0 Votes
    9 Posts
    358 Views
    ustkU

    @Matt_SF Oh nice! I was certain I tested this too but apparently not!

    @d-healey Yeah the apparence I could just treat it this way but unfortunately the number I need to return in the case of a NaN is depending on the context, so it's not that simple i the end

  • This topic is deleted!

    1
    0 Votes
    1 Posts
    4 Views
    No one has replied
  • VST with sampler interface

    2
    0 Votes
    2 Posts
    206 Views
    d.healeyD

    @alfaholic There is no way to show the sample mapping window on the front end of the plugin, you'd have to create your own interface through scripting. It is possible to allow the user to import samples though.

  • From A to Z

    14
    0 Votes
    14 Posts
    596 Views
    U

    @d-healey I found the files. Thank you. They launched successfully.)))

  • Phase modulation/distortion possible?

    1
    0 Votes
    1 Posts
    103 Views
    No one has replied
  • Javascript Libraries into HISE

    3
    0 Votes
    3 Posts
    120 Views
    T

    @tomekbruml thank you for the quick response! Much appreciated.

  • How do a route sampler output 1 to container input 1+2?

    7
    0 Votes
    7 Posts
    217 Views
    OrvillainO

    adb32698-490b-4f2f-9b53-0def7a2c5f5b-image.png
    e3fe4cc0-b597-4155-9089-612fadbcbd13-image.png

    This is how I handled it:

    Main container. Inside:

    Sampler Send container

    Sampler FX:

    A series of send effects. Each one selects a channel pair (0 being 1+2, 2 being 3+4, etc)

    Sampler routing matrix:

    For the outputs that I need to duplicate.... route the left through to the container inputs. Leave an empty socket for the right. Any top row sources that are genuinely stereo just route through as normal.

    Send Container routing matrix:

    Connect the top row channels to the 'empty sockets' for the right source. This means that 1+2 now carry the same signal. 3+4 carry the same signal.

    Main container:

    Now you can add Simple Gain insert effects and assign them to the pairs. This gives you a volume control for the dual-mono pairs, as well as the regular "true stereo" sources.
  • suffix on Panel Slider

    4
    0 Votes
    4 Posts
    106 Views
    ustkU

    @alobassmann Well, @d-healey just went to the most important point to begin with...

  • Level display in hise

    3
    0 Votes
    3 Posts
    98 Views
    K

    @ustk thank you so much, I'll try!

  • What's the Multipage Editor?

    2
    0 Votes
    2 Posts
    111 Views
    d.healeyD

    @11235813 I don't think it's ready for production yet. You can see it in action if you open the broadcaster wizard.

  • Drawing an arc for the knob LAF; where am I going wrong?

    Solved
    17
    0 Votes
    17 Posts
    318 Views
    M

    @d-healey done, final version:

    //KNOBS LAF const var Knob17 = Content.getComponent("Knob17"); const var laf = Content.createLocalLookAndFeel(); laf.registerFunction("drawRotarySlider", function(g, obj) { var a = obj.area; // Draw the background ellipse g.setColour(obj.bgColour); g.fillEllipse(a); // Draw the inner ellipse (smaller) g.setColour(obj.itemColour1); var innerMargin = 20; // Increase this value to make the inner ellipse smaller g.fillEllipse([a[0] + innerMargin, a[1] + innerMargin, a[2] - 2*innerMargin, a[3] - 2*innerMargin]); // Calculate the rotation angle for the arc var start = 0; // Starting at 0 radians var end = 2 * Math.PI * obj.valueNormalized; // Ending at 2π radians for full rotation // Define the arc path var p1 = Content.createPath(); var arcThickness = 12; // Thickness of the arc var arcMargin = 8; // p1.addArc([arcMargin, arcMargin, a[2] - 2 * arcMargin, a[3] - 2 * arcMargin], start, end); // Draw the value arc with .textColour g.setColour(obj.textColour); g.drawPath(p1, 0, arcThickness); // Modified line with 3 arguments // Draw the needle g.rotate(end, [a[2] / 2, a[3] / 2]); g.setColour(obj.itemColour2); g.fillRect([a[2] / 2 - 8 / 2, 0, 8, 40]); }); Knob17.setLocalLookAndFeel(laf);
  • Preset category not selected on startup?

    Unsolved
    17
    0 Votes
    17 Posts
    521 Views
    LindonL

    @d-healey said in Preset category not selected on startup?:

    Easy yes, but you have to recompile HISE each time.

    ..and all your ScrtiptNode dlls....

  • font alignment in LAF

    4
    0 Votes
    4 Posts
    173 Views
    StraticahS

    @majetone you can replace the + - "offsethere" with your value

    var a = [obj.area[0], obj.area[1], obj.area[2], obj.area[3]]; g.drawAlignedText(obj.text, [a[0], a[1] + offsethere , a[2], a[3]], "centred"); //x y width height
  • I don't understand how to use g.rotate in knob laf

    Solved
    3
    0 Votes
    3 Posts
    256 Views
    M

    @ustk Thanks, that's perfect. Now I have to understand how the arch works to which I will assign "textColor"

    laf.registerFunction("drawRotarySlider", function(g, obj) { var a = obj.area; // Draw the background ellipse g.setColour(obj.bgColour); g.fillEllipse(a); // Draw the inner ellipse g.setColour(obj.itemColour1); g.fillEllipse([10, 10, a[2] - 20, a[3] - 20]); // Calculate the rotation angle var start = 0; // Starting at 0 radians var end = 2 * Math.PI * obj.valueNormalized; // Ending at 2π radians for full rotation g.rotate(end, [a[2] / 2, a[3] / 2]); // Draw the needle g.setColour(obj.itemColour2); g.fillRect([a[2] / 2 - 8 / 2, 0, 8, 40]); });
  • Can't compile plugin after update(v4)

    16
    0 Votes
    16 Posts
    1k Views
    d.healeyD

    @clevername27 To make it more difficult to export :)

    The idea is that many new users were not aware of the various steps they needed to take before they could export/compile their projects - things like installing Visual Studio/Xcode, setting the HISE path, etc. The wizard is meant to check that all these things are in place and guide them, but currently it doesn't seem to be doing it's job.

  • 2 random audio loop player questions

    1
    0 Votes
    1 Posts
    97 Views
    No one has replied
  • struggling to find how and what params are parsed with sfz importer

    4
    0 Votes
    4 Posts
    143 Views
    d.healeyD

    @ospfeigrp I'm not familiar enough with SFZ to know the answer, sorry.

35

Online

1.8k

Users

12.1k

Topics

105.7k

Posts