• Accessing SliderPack in ScriptNode through an EffectSlot

    1
    0 Votes
    1 Posts
    106 Views
    No one has replied
  • Hi all! New here. Best resources?

    5
    1 Votes
    5 Posts
    696 Views
    d.healeyD

    There's also the tutorial repo, some of the projects there might not work in the latest builds of HISE without tweaking though - https://github.com/christophhart/hise_tutorial

  • PolyShape FX - Display

    3
    0 Votes
    3 Posts
    162 Views
    LindonL

    @d-healey Thanks David.

  • Expandable GUI

    76
    0 Votes
    76 Posts
    11k Views
    W

    @DabDab thanx, as soon I finish my current plug in I will do,im almost done im afraid I mess things up.

  • Is this a notorazation or codesign error?

    5
    0 Votes
    5 Posts
    252 Views
    bendursoB

    @Lindon Well, if Microsoft had something like that to sign the installers at that price it would be great :) Licenses sold by resellers are much more expensive.

    @Mighty23 This is the way to do it: https://forum.hise.audio/topic/3247/notarisation-for-dummies/93?_=1725385652914 The post from Orange is the most complete one I found. The only thing that is outdated is in point 5, you have to use notarytool instead of altool.

  • LAF gives me performance degradation over time.

    3
    0 Votes
    3 Posts
    355 Views
    M

    @clevername27 Thanks for the explanation. Your comment on the post helped me solve the memory management. Thanks again.

  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    11 Views
    No one has replied
  • Huge Memory usage while building (big) instrument

    7
    1 Votes
    7 Posts
    364 Views
    Matt_SFM

    @clevername27 said in Huge Memory usage while building (big) instrument:

    @Matt_SF You know a lot of developers would be proud of having huge memory and a big instrument. I'm not helpful.

    :face_with_tears_of_joy: :face_with_tears_of_joy: :face_with_tears_of_joy:

  • Tempo sync

    10
    0 Votes
    10 Posts
    770 Views
    U

    @DabDab yes) thank you šŸ™šŸ˜šŸ˜šŸ˜

  • Gain Right After Sampler?

    Unsolved
    5
    0 Votes
    5 Posts
    234 Views
    C

    @aaronventure Thanks you - perfect!

  • Pitch bend/Mod wheel filmstrip mapping

    10
    0 Votes
    10 Posts
    802 Views
    M

    @d-healey sadly couldn't create a snippet since I used a Pitch/Mod wheels display script instead, shared by Christoph. But I do believe I had the exact malfunction like our friend @johnmike

  • Update Function after DAW restore

    Solved
    3
    0 Votes
    3 Posts
    238 Views
    C

    @bendurso Remember not to use a callback to know when a SampleMap has finished loading — use a Broadcaster.

  • fft scritpnode analyzer

    11
    0 Votes
    11 Posts
    883 Views
    A

    this belongs in the snippet browser!

  • Long delays (like say 8 bars) not showing up in compiled dll

    11
    0 Votes
    11 Posts
    399 Views
    LindonL

    @Christoph-Hart said in Long delays (like say 8 bars) not showing up in compiled dll:

    @aaronventure not sure how the interpreter works but the generated code consists of a big for loop for each sample so Iā€˜m guessing that it works the same internally.

    I can confirm that wrapping the network in a fix8 doesnt change anything,.it works raw but fails compiled...

  • Scriptnode osc pitch question

    14
    0 Votes
    14 Posts
    719 Views
    A

    @Christoph-Hart How would you go about getting the Freq Ratio knob in a core.oscillator to work with a Pitch Modulator in the tree?

    I have a Waveform generator with a purple voice start constant pitch mod (for detune).

    I have a polyphonic script node network using the core.oscillator as a modsource to introduce AM.

    If I detune the the pitch mod to anything other than +-12, it sounds awful. Lower notes sound like there's a slow LFO and higher notes sound like there's a fast LFO.

    I thought I found the fix - I added a core.pitch_mod to the modchain and connected that to the Freq Ratio Knob.

    There's only one problem.

    You can't compile a dsp network with the core.pitch_mod. What other node could I use to achieve the same thing?

    Thanks!

  • 0 Votes
    43 Posts
    3k Views
    d.healeyD

    I ran into this again on a new system so decided to improve life a tiny bit as best I can until we get some of the changes from JUCE 8.

    So to build HISE on a newer Debian based distro.

    Use my fork if you can. If not then add /usr/include/freetype2 and /usr/include/gtk-3.0/gtk to the extra header paths in Projucer Install the SourceCodePro font in ~/.fonts Install mold linker and alias it to gold Install gcc-11 and g++-11 and set them as the default (instructions here) Install libwebkit2gtk-4.1-dev Add a symlink for libwebkit2gtk-dev-4.0 that points to libwebkit2gtk-dev-4.1: Locate the pkconfig file (.pc). On my system it's in /usr/lib/x86_64-linux-gnu/pkgconfig/ You can find it by running find /usr -name "webkit2gtk-4.1.pc" cd to the folder that contains the file Run sudo ln -s webkit2gtk-4.1.pc webkit2gtk-4.0.pc to create the symlink.
  • Compiling error command line tools Xcode

    7
    0 Votes
    7 Posts
    1k Views
    d.healeyD

    @AxiomCrux Did you solve it?

  • Seperate combobox for each sampler to change sample maps

    4
    0 Votes
    4 Posts
    501 Views
    d.healeyD

    @goldee In that case you need to add two comboxes to your UI script. In the callback of one you change the sample map for sampler A and in the callback for the other you change the sample map for sampler B.

  • VST UI: Had a neat idea involving Lottie and FloatingPanel/Analyzer

    11
    0 Votes
    11 Posts
    823 Views
    d.healeyD

    @bandit_FD1 said in VST UI: Had a neat idea involving Lottie and FloatingPanel/Analyzer:

    VST and Effects implementation/Design

    I don't have much experience with effects - also VST and effect are not exclusive.

    Scripting/Callbacks in the guise of Design and Control

    Not sure what you mean by Design and Control.

    Customizing controls with lottie (as per your videos)

    Not sure there is much more to add there. Lottie is not really any different to any other method of styling components, once you know the principle.

    OSX builds (this i've already going through and worked through this part with the help of you and of the forum users --there are some interesting gotchas)

    I cover exporting plugins on OSX in the course.

    Packaging your VST (with either pkgbuild, productbuild or "Packages")

    I don't think I covered installers so that would be a good one to do. I have some videos on YouTube/Patreon about installers too. Packages is the way to go, it's essentially a front-end for pkgbuild and productbuild.

  • Radial Gradient

    3
    0 Votes
    3 Posts
    183 Views
    B

    @Matt_SF Thank you so much!

25

Online

1.9k

Users

12.5k

Topics

108.5k

Posts