• Coming over from Kontakt? Read this!

    Pinned
    8
    1 Votes
    8 Posts
    7k Views
    LindonL

    @d-healey said in Coming over from Kontakt? Read this!:

    @Lindon They live inside Kontakt's sample map too, it's just that with Kontakt there is only one sample map and it's part of the NKI.

    I think the main different between Kontakt's groups and HISE's is that with Kontakt you can route them individually and apply effects and other processing to them individually which you can't do in HISE (yet...?).

    In HISE the routing and modulation is at the sampler level rather than the group level.

    Absoloutely - valuable stuff to include - I guess I was thinking inside a group you see a mapping of sample audio files, inside a Sample Map you see....so (to start with) same same...as a starting point. But hey no problem.

  • Apple team ID, code sign but ask for security to open the plugin

    9
    0 Votes
    9 Posts
    22 Views
    Oli UllmannO

    @Yannrog
    You must codesign your plug-in files.
    And you must codesign, notarize, and staple your installer.

    Here are the commands I use. Of course, you'll need to enter your own data. For the commands to work, the files must always be on your desktop.

    // AU Component (Sign) codesign -s "Developer ID Application: YOUR NAME (YOUR CODE)" "/Users/YOUR_USERNAME/Desktop/YOUR_PLUGIN.component" --timestamp // VST3 (Sign) codesign -s "Developer ID Application: YOUR NAME (YOUR CODE)" "/Users/YOUR_USERNAME/Desktop/YOUR_PLUGIN.vst3" --timestamp // Installer (Sign) codesign --deep --force --options runtime --sign "Developer ID Application: YOUR NAME (YOUR CODE)" "/Users/YOUR_USERNAME/Desktop/YOUR_INSTALLER.pkg" // Installer (Notarization) xcrun notarytool submit --apple-id "YOUR_MAIL_ADRESS" --password "YOUR_PASSWORD" --team-id "YOUR_CODE" --wait "/Users/YOUR_USERNAME/Desktop/YOUR_INSTALLER.pkg" // Installer (Staple) xcrun stapler staple "/Users/YOUR_USERNAME/Desktop/YOUR_INSTALLER.pkg"

    This article is very helpful, and it allowed me to set up my system:
    https://www.kvraudio.com/forum/viewtopic.php?t=531663

    This article is also very helpful if you run into any problems:
    https://developer.apple.com/documentation/security/resolving-common-notarization-issues

  • Is HISE Compatible with Xcode 26?

    11
    0 Votes
    11 Posts
    106 Views
    David HealeyD

    @brucerothwell Yes

    @brucerothwell said in Is HISE Compatible with Xcode 26?:

    Curious… what is the HISE 4.1 installer for, then?

    Mostly for confusing people :)

    The prebuilt version if a good way for people to try out HISE before committing to going through the process of setting up their system for compiling.

    Also be aware that you're going to need macOS, Windows, and Linux systems in order to be able to export for each platform (all covered in the course).

  • Testers Needed for Rhapsody v3

    36
    1 Votes
    36 Posts
    983 Views
    David HealeyD

    @jeffd Thanks for confirming.

  • Custom controls

    2
    0 Votes
    2 Posts
    29 Views
    David HealeyD

    @Morphoice what kind of custom control?

  • StripKit - Animated Filmstrip Generator for Audio-Plugin GUIs

    3
    1 Votes
    3 Posts
    177 Views
    B

    @VybeCodeDSP StripKit looks really nice!

    It seems you only support the Windows platform?
    If so, are you planning to support MacOS?
    If so, let me know if you need a beta tester!

  • waveform: draw loop position/crossfade

    2
    0 Votes
    2 Posts
    39 Views
  • Animated modulation

    23
    0 Votes
    23 Posts
    392 Views
    ustkU

    @dannytaurus Yeah, keeping the colours tidy in your code is easier in the end. Then you can set the component colours from script when needed and everything updates automatically if you adjust something instead of copy/paste in all components...

    I tend to to everything I can in paint routines, the less components in the tree, the happier I am!
    That being said... In order to reduce CPU load, I still tend to keep fixed drawing (bg, mask, etc...) in separate panels so the LAF function job is only constrained to what is really necessary. I also keep all the math constants externally, unlike the example...

    Other issue with the "multiple panel masking technique" is that when you want to move it, it can be very annoying, unless adding them all in an holder panel, which is one more component... 😬

  • The Legato between samplers

    6
    0 Votes
    6 Posts
    161 Views
    David HealeyD

    @Felix-W Break it down. Make a minimal project with one sampler where notes only trigger during legato transitions. Once you get that working you can start to incorporate it into your project.

  • Get, post API Hise language.

    7
    0 Votes
    7 Posts
    92 Views
    Y

    @David-Healey Ok,

    Is it possible to discuss in private?

  • Stop pruning default values from XML?

    4
    0 Votes
    4 Posts
    143 Views
    David HealeyD

    @dannytaurus said in Stop pruning default values from XML?:

    because I'm setting some values in script that happen to be default values.

    Hmm this might be the source of an issue I was having too, I might try it.

  • Is someone familiar with subscription models? (real advices)

    1
    1 Votes
    1 Posts
    49 Views
    No one has replied
  • Set order of parameters as listed for automation

    25
    0 Votes
    25 Posts
    860 Views
    ustkU

    @dannytaurus Good job detective!
    I agree to the WTF, seems that developing new protocols of all sorts but there's still no agreement whatsoever in the way DAWs handle such a simple task... Shame...

  • Anyone doing factory presets only, with no Save button?

    8
    0 Votes
    8 Posts
    201 Views
    ChazroxC

    @dannytaurus said in Anyone doing factory presets only, with no Save button?:

    power-user feature

    It for sure is a power-move and not as intuitive as a user preset.

  • Linux

    9
    0 Votes
    9 Posts
    324 Views
    David HealeyD

    @zachhealy1005 said in Linux:

    so compiling hise on my laptop is in fact impossible.

    If you reduce the number of compile threads to 1 or 2 it might still compile.
    make CONFIG=Release -j 2

  • 0 Votes
    23 Posts
    556 Views
    LindonL

    @David-Healey well done...for now I might stick to my "Load Request File" based appraoch...

  • Show default preset name on first launch

    6
    0 Votes
    6 Posts
    94 Views
    dannytaurusD

    @ustk Good call. Claude suggested I update to this:

    UserPresetHandler.setPostCallback(function(presetFile) { // On first launch the default preset loads with no file (frontend leaves // currentlyLoadedFile empty), so getCurrentUserPresetName() is "". Fall back // to the default preset name. (Editor returns the real name, so it's unaffected.) var name = Engine.getCurrentUserPresetName(); btnShowPresetBrowser.set("text", name != "" ? name : "00 INIT"); });

    I'll try it and make sure it works on first launch, and doesn't interfere with reloading DAW sessions.

  • has anyone successfully integrated ELASTIQUE into hise?

    4
    0 Votes
    4 Posts
    142 Views
    A

    There is a detailed comparison of various pitch algorithms.
    Rubberband performs really well and it's not too difficult to integrate into Hise.
    I think there's even a detailed post somewhere here on the forum about this topic.

  • Getting impulses into convoluting reverb in a Script Node

    8
    0 Votes
    8 Posts
    144 Views
    S

    @Sampletekk David, I bow in your general direction!

  • This topic is deleted!

    2
    0 Votes
    2 Posts
    2 Views
    No one has replied

24

Online

2.4k

Users

13.8k

Topics

120.0k

Posts