• WTF is This?

    1
    0 Votes
    1 Posts
    53 Views
    No one has replied
  • Stopping Dynamic Filter Resizing

    6
    0 Votes
    6 Posts
    134 Views
    Oli UllmannO

    @JulesV
    I don't remember your snippet exactly, but yes, eqBrdCst.setEnableQueue(true) is important for the logic to work. Christoph gave me this tip when I was writing the script.

  • Whitebox Packages - plugins changes into folders

    13
    0 Votes
    13 Posts
    87 Views
    P

    @Dan-Korneff i don't see this option, where i can find it?

  • Slow setEffect() with multiple Macro assignments

    Solved
    2
    0 Votes
    2 Posts
    42 Views
    bendursoB

    @bendurso Fixed. The problem was actually caused by my filters script, which overloaded the system with macros.

  • My Plugin (SpectraLayers) is Now Part of ProTools

    6
    18 Votes
    6 Posts
    123 Views
    clevername27C

    @Morphoice Thanks, mate. Happy to help with any questions.

  • Flangers...

    9
    0 Votes
    9 Posts
    134 Views
    MorphoiceM

    @Lindon really depends on what sound and modulation possibilities you want to go for. Whipping up comething custom in faust should be straight forward. Habe a look at the boss or moog clusterlis schematics, they are usually among the most recommended flangers. Probably airwindows is another good source to start and easy to turn into a node. I had a thread how to do it now long ago you should find all you need in there

  • Buffer warning when plugin runs

    12
    0 Votes
    12 Posts
    191 Views
    pcs800P

    @d-healey There's no setting for that with wavert in my daw

  • 0 Votes
    5 Posts
    94 Views
    DabDabD

    @bendurso It means developer will have to pay Apple in anyway whether developing for Free Plugins or Commercial one.

  • LAF help - Vertical slider handle goes too low!

    3
    0 Votes
    3 Posts
    56 Views
    DanHD

    @rglides legend, thank you!

  • New Arpeggiator (from Docs) - connect to multiple Synth Groups?

    22
    0 Votes
    22 Posts
    317 Views
    LindonL

    @DanH Id start by looking at the Global cables...

  • Slider Array to control sliderpack + set Label text?

    5
    0 Votes
    5 Posts
    42 Views
    DanHD

    @d-healey got it working, thanks!

  • Using a finished project as a template

    46
    0 Votes
    46 Posts
    745 Views
    bendursoB

    @pcs800 It's something similar to an instrument for Kontakt. You just have one plugin, and then you make instruments (expansions) for it with different images, samples and presets.

    You can check here: https://docs.hise.dev/working-with-hise/project-management/expansions/

    And David's video: https://www.youtube.com/watch?v=VsQTOxOOd9s

    If you're new to HISE, expansions might not be the best place to start :)

  • Which AAX SDK version works for HISE 4.1.0?

    6
    0 Votes
    6 Posts
    131 Views
    HISEnbergH

    @Sawatakashi Lol not really I only set this up last week but I had similar issues.

    For the first issue on Windows you have basically solved it. When you build the AAX in Visual Studio (so the one that is in HISE's SDK folder), set it to static release. Each time you build your HISE project it will build against this version and you will be good to go. There is a post about this on the forum somewhere.

    When building the AAX SDK on Xcode it was a bit more trial and error for me but I think what happens is HISE is only designed to build for arm64 or Intel slice  x86_64 (depending on what you set in your Projucer). I ended up asking chat gpt for the solution to the universal binary and it gave me the right response. I found the terminal command (option 2) to be more efficient:

    Option 1 – Re‑build in Xcode (GUI)

    Open the project again
    Libs/AAXLibrary/MacBuild/AAXLibrary.xcodeproj

    Target & Build Settings

    Select the AAXLibrary_libcpp target.

    In Build Settings

    Architectures → Standard Architectures (arm64, x86_64)
    (don’t choose “arm64 only”).

    Build Active Architecture Only → No (Debug and Release).

    Excluded Architectures → (leave empty)

    Choose a universal build destination
    In the scheme selector (the drop‑down next to the ▶︎ button) pick
    Any Mac (My Mac) or Any Mac (Mac Catalyst) – not “My Mac (Apple Silicon)”.
    That generic destination tells Xcode to build all valid slices.

    Build (⌘B)
    When it finishes, run:

    lipo -info "$HOME/HISE/tools/SDK/AAX/Libs/Release/libAAXLibrary_libcpp.a"

    Expected output:

    Architectures in the fat file: libAAXLibrary_libcpp.a are: arm64 x86_64 Option 2 – One‑liner with xcodebuild (CLI)

    From Terminal inside Libs/AAXLibrary/MacBuild/:

    xcodebuild -project AAXLibrary.xcodeproj \ -target AAXLibrary_libcpp \ -configuration Release \ -sdk macosx \ ARCHS="arm64 x86_64" \ BUILD_LIBRARY_FOR_DISTRIBUTION=YES \ BUILD_ACTIVE_ARCH_ONLY=NO

    This explicitly asks Xcode to build both slices and drops the fat libAAXLibrary_libcpp.a in:

    Libs/Release/libAAXLibrary_libcpp.a
    Check it with lipo -info as above.

  • Table curvy shape issue

    11
    0 Votes
    11 Posts
    139 Views
    HISEnbergH

    @d-healey said in Table curvy shape issue:

    HISE_Definitions

    It would be really great to have this added to the HISE documentation!

  • 1 Votes
    4 Posts
    44 Views
    ustkU

    @DanH I agree that a button click that open the snippet and closes the window at the same time might be a nice option to have 😉

  • Logic Pro crash when playing MIDI

    31
    0 Votes
    31 Posts
    446 Views
    S

    Found the problem!

    Logic Pro crashed when playing a MIDI file and starting/stopping the playback

    After stripping down the instrument part by part, I could isolate the problem.
    I have a sampler that plays hammerback sound, that is, the sound of the piano hammers, falling back after releasing a key.
    It turned out that the Release Trigger MIDI processor for that sampler had the Time Attenuate activated, for some obscure reason, or mistake... When I deactivated that, Logic worked as it should.
    I also have regular release samples that has the Time Attenuator activated, as it should, but the the curve is reversed, sinve I wan't those samples to trigger at a lower volume the longer a key has been pressed prior to release.

    If the thing that caused Logic to crash was the combination of these two release samples, or only the Hammerback, I don't know, but when I, or anyone else, have more time and want to do a test, it might be a good idea. This was the AU version, and only on Logic Pro

    Skärmavbild 2025-05-13 kl. 13.49.06.png

  • FREEMIUM MODEL

    11
    0 Votes
    11 Posts
    198 Views
    LindonL

    @Kunal-Babbar said in FREEMIUM MODEL:

    Hello, I am looking for someone who can help me create a freemium version of my plugin :D

    If you are comfortable and open to work, please contact me at Kunal@sauceaudio.com or WhatsApp me on +919711192750.

    Obviously the project is paid and timeline is 7 days :D

    Best
    Kunal

    Ok everyone - if you are thinking of taking this give me a chat-based shout.

  • Multiple Eq nodes to the FilterDisplay FloatingTile

    4
    0 Votes
    4 Posts
    47 Views
    JulesVJ

    @Christoph-Hart @HISEnberg Good examples, thanks.

  • Parallel Threaded Voices in Hise?

    3
    0 Votes
    3 Posts
    37 Views
    griffinboyG

    @Christoph-Hart said in Parallel Threaded Voices in Hise?:

    If your synth is able to max out a single core it won‘t work in a musical context anyway

    Maybe I phrased it a little wrong, I'm talking about SIMD.
    Many synths for example use SIMD for batching unison voices, or voices in general, or left right channels even, and processing them in parallel. This is common, no?

    I was talking about parallelism rather than just threading.

  • Click and pop sounds

    Solved
    6
    0 Votes
    6 Posts
    54 Views
    Oli UllmannO

    @Christoph-Hart
    All right. Thanks for the explanation! :-)

10

Online

1.7k

Users

11.8k

Topics

102.4k

Posts