• 0 Votes
    24 Posts
    64 Views
    A

    @David-Healey oh my god. thank you really. i'll wait for solve. good night that kind man

  • How do I add gain?

    ScriptNode
    4
    0 Votes
    4 Posts
    22 Views
    Oli UllmannO

    @Kalliopei
    I think you can simply set the MaxValue for the gain to 24.0 in your network's XML file. Use a text editor to do this. Then it should work.

  • Hise general and compiler settings not saving

    General Questions
    11
    0 Votes
    11 Posts
    814 Views
    K

    @Christoph-Hart
    Yes, you're quite right, that probably is the real cause.
    Still a bit weird, since an older install worked as should.
    Although it was the one with an .pkg, or was it .dmg, installer from the website,
    so that might have to do with it as well.
    And as the admin and the sole user of the machine, the writing rights should've been ok.

  • "An error again :("

    General Questions
    2
    0 Votes
    2 Posts
    24 Views
    David HealeyD

    You just need to run a command to tell the system where xcode is.

    Make sure your xcode app is in /Applications (not the user folder, the system one). Then run the command

    sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
  • Flex Ahdsr laf improvements

    General Questions
    1
    4 Votes
    1 Posts
    20 Views
    No one has replied
  • 6 Votes
    28 Posts
    4k Views
    lalalandsynthL

    I was not planning on making another one today as I am deep diving into glsl, but got an idea and had to flesh it out. 🥧

    So this is "KOMPRESS"

    Minimal with a central large knob, Figma design.

    This one uses quite a lot of blur for the glow on the black knob which is a HISE problem but since its stationary on the knob , I could move only the line indicator on the knob and just either print the blur or if keeping as vector see if I can get away with one blurred component?

    KOMPRESS UI

    KOMPRESS Final.png

    KOMPRESS DAW

    KOMPRESS DAW.png

    KOMPRESS D16:9

    Wide AD.png

    KOMPRESS 4:5

    Long ad.png

  • Need help for Export on Mac

    General Questions
    1
    0 Votes
    1 Posts
    22 Views
    No one has replied
  • Flex Envelope Visual Bug

    Bug Reports
    1
    0 Votes
    1 Posts
    36 Views
    No one has replied
  • where do I find the 4.9.2 hise version?

    General Questions
    13
    0 Votes
    13 Posts
    130 Views
    C

    @Christoph-Hart haha thanks man! i dont know what to say. im too new at this stuff, its all hieroglyphes for me.

  • Oriental Drummer

    General Questions
    10
    4 Votes
    10 Posts
    2k Views
    A

    @combamusic Thank you!

  • Global Cables Don't Work when compiled

    Solved Bug Reports
    32
    2 Votes
    32 Posts
    9k Views
    ustkU

    @Christoph-Hart Nice one! It seems to work but I can't fully confirm at the moment because something in my network makes a hard crash as soon it loads in a HCFX...
    But it is definitely not the C++ node and compiling it with a fresh network removes the global cable not found warning 👍

  • Check Latency broken on latest develop build?

    Bug Reports
    23
    0 Votes
    23 Posts
    6k Views
    dannytaurusD

    @ustk Dug into this and found the root cause. Two PRs are up that fix it:

    https://github.com/christophhart/HISE/pull/1013 https://github.com/christophhart/HISE/pull/1014

    What broke: since e429f19d1 (Jan 11) the IDE builds with a 16-channel configuration, which disables FORCE_INPUT_CHANNELS - and with it, the path that carries the input buffer into the signal chain. The latency check injects its test impulse into that buffer, so the impulse never came back: no result popup until you play a note, and then the number is just the elapsed time. a6c5d9dd7 fixed an include-order problem in the same area but the input path is still compiled out in the stock build, which is why the tool stayed broken. PR #1013 keeps the input alive during a measurement (no-op the rest of the time, backend only).

    Second problem: even with the signal path restored, the old single-sample impulse can't survive effects that smear transients. Something like pitch_shift spreads those two samples over its whole analysis window and the output peak lands ~50x below the detection threshold, so the check hangs forever. Following @ustk's suggestion, PR #1014 swaps the impulse for a 20ms sine burst at 1kHz and reports the onset (first threshold crossing) instead of the peak. It also adds a 2 second timeout with an explicit "no signal detected" error instead of waiting indefinitely.

    Test results with both fixes (48kHz, stock standalone build):

    fully wet 333ms delay: 16000 samples, exact and repeatable convolution reverb: deterministic result that measures the onset of your IR (the convolver head itself is zero latency, so silence at the start of the IR file is what you're seeing) pitch_shift: now reports (~4200 samples); the remaining +-250 sample spread between runs is the stretcher's own timing indeterminacy, not the measurement

    One side discovery while testing: wrapping pitch_shift in an oversample4 node cuts its real-world latency roughly 4x (~88ms down to ~23ms), because the stretcher window is sized in samples, not milliseconds. Costs you the CPU of running it at 4x rate, but useful if the latency matters.

  • getChildComponents returns all descendents

    Bug Reports
    11
    1 Votes
    11 Posts
    126 Views
  • Latency issues..

    General Questions
    4
    0 Votes
    4 Posts
    1k Views
    ustkU

    @Jeetender That is strange. Didn't you see the latency reported in the DAW?

    Removing the module that causes latency is not a viable solution. Once you know the latency of your plugin, you should just be able to report it to the DAW with this method.

    So it's not an "in plugin compensation" but telling the DAW "hey, I introduce this amount of latency, please compensate for me" (in which "this amount" is your job to determine)

  • Windows 11: Error building standalone app

    Newbie League
    2
    0 Votes
    2 Posts
    47 Views
    M

    Fixed thanks to Google AI Mode which told me how to switch to the v143 toolset.

  • 0 Votes
    2 Posts
    74 Views
    David HealeyD

    @ospfeigrp You can draw that kind of thing using look and feel or paint routines, you'll need to get familiar with drawing arcs.

  • Range slider fix

    C++ Development
    1
    5 Votes
    1 Posts
    39 Views
    No one has replied
  • [BLOG] How does DSP work? [Part 3]

    C++ Development
    2
    9 Votes
    2 Posts
    101 Views
    I

    WebDesk is one of the leading providers of HR Software in Pakistan, offering complete HR management, payroll processing, attendance tracking, leave management, recruitment management, and employee self-service solutions. The platform helps businesses automate daily HR operations, improve efficiency, and streamline workforce management.

  • Mono plugin with side-chain

    Feature Requests
    12
    0 Votes
    12 Posts
    153 Views
    J

    @dannytaurus Thank you kindly for the detailed response :)

  • How to move the position of the console tab?

    Newbie League
    4
    0 Votes
    4 Posts
    73 Views
    David HealeyD

    @observantsound Aha ok, I didn't realise how old that video was. The basic layout controls are the same though.

    @observantsound said in How to move the position of the console tab?:

    When I do Show Custom Workspace, then it appears instead of the UI editor. But Code Editor and Module Tree tabs are still there.

    The custom workspace always shows at the right side of the screen. You need to readd the interface designer and anything else you want.

    Here's mine which you can load up using the Load from JSON option

    { "Type": "HorizontalTile", "Title": "Custom Workspace", "StyleData": { }, "Font": "", "FontSize": 16.0, "LayoutData": { "ID": "CustomWorkspace", "Size": -0.5, "Folded": -1, "Visible": true, "ForceFoldButton": 0, "ForceShowTitle": 0, "MinSize": -1 }, "ColourData": { }, "Content": [ { "Type": "HorizontalTile", "StyleData": { }, "Font": "", "FontSize": 16.0, "LayoutData": { "ID": "anonymous", "Size": -0.5, "Folded": -1, "Visible": true, "ForceFoldButton": 0, "ForceShowTitle": 0, "MinSize": -1 }, "ColourData": { }, "Content": [ { "Type": "Tabs", "StyleData": { }, "Font": "", "FontSize": 16.0, "LayoutData": { "ID": "anonymous", "Size": -0.7089258744251568, "Folded": -1, "Visible": true, "ForceFoldButton": 0, "ForceShowTitle": 0, "MinSize": -1 }, "ColourData": { }, "Content": [ { "Type": "VerticalTile", "StyleData": { }, "Font": "", "FontSize": 16.0, "LayoutData": { "ID": "anonymous", "Size": -0.5, "Folded": 0, "Visible": true, "ForceFoldButton": 0, "ForceShowTitle": 0, "MinSize": -1 }, "ColourData": { }, "Content": [ { "Type": "ScriptComponentList", "StyleData": { }, "Font": "", "FontSize": 16.0, "LayoutData": { "ID": "anonymous", "Size": -0.21505048318491, "Folded": 0, "Visible": true, "ForceFoldButton": 0, "ForceShowTitle": 0, "MinSize": -1 }, "ColourData": { }, "ProcessorId": "Interface", "Index": 0, "FollowWorkspace": false, "Openess": true }, { "Type": "ScriptContent", "StyleData": { }, "Font": "", "FontSize": 16.0, "LayoutData": { "ID": "anonymous", "Size": -0.9208939579940479, "Folded": 0, "Visible": true, "ForceFoldButton": 0, "ForceShowTitle": 0, "MinSize": -1 }, "ColourData": { }, "ProcessorId": "Interface", "Index": 0, "FollowWorkspace": false, "EditMode": true }, { "Type": "InterfacePropertyEditor", "StyleData": { }, "Font": "", "FontSize": 16.0, "LayoutData": { "ID": "anonymous", "Size": -0.2599186681484935, "Folded": 0, "Visible": true, "ForceFoldButton": 0, "ForceShowTitle": 0, "MinSize": -1 }, "ColourData": { }, "ProcessorId": "Interface", "Index": 0, "FollowWorkspace": false } ] }, { "Type": "ScriptEditor", "StyleData": { }, "Font": "", "FontSize": 16.0, "LayoutData": { "ID": "anonymous", "Size": -0.5, "Folded": 0, "Visible": true, "ForceFoldButton": 0, "ForceShowTitle": 0, "MinSize": -1 }, "ColourData": { }, "ProcessorId": "Interface", "Index": 15, "FollowWorkspace": false, "ScriptFile": "Expansions.js" }, { "Type": "ScriptEditor", "StyleData": { }, "Font": "", "FontSize": 16.0, "LayoutData": { "ID": "anonymous", "Size": -0.5, "Folded": 0, "Visible": true, "ForceFoldButton": 0, "ForceShowTitle": 0, "MinSize": -1 }, "ColourData": { }, "ProcessorId": "Interface", "Index": 28, "FollowWorkspace": false, "ScriptFile": "RhapsodyFramework/Core/includes/UserSettings.js" }, { "Type": "ScriptEditor", "Title": "onInit", "StyleData": { }, "Font": "", "FontSize": 16.0, "LayoutData": { "ID": "anonymous", "Size": -0.5, "Folded": 0, "Visible": true, "ForceFoldButton": 0, "ForceShowTitle": 0, "MinSize": -1, "FocusKeyPress": "", "FoldKeyPress": "" }, "ColourData": { }, "ProcessorId": "Interface", "Index": 0, "FollowWorkspace": false, "ScriptFile": "RhapsodyFramework/Core/includes/Fonts.js" }, { "Type": "VerticalTile", "Title": "Dual Sampler", "StyleData": { }, "Font": "", "FontSize": 16.0, "LayoutData": { "ID": "anonymous", "Size": -0.5, "Folded": 0, "Visible": true, "ForceFoldButton": 0, "ForceShowTitle": 0, "MinSize": -1, "FocusKeyPress": "", "FoldKeyPress": "" }, "ColourData": { }, "Content": [ { "Type": "HorizontalTile", "StyleData": { }, "Font": "", "FontSize": 16.0, "LayoutData": { "ID": "anonymous", "Size": -0.5, "Folded": -1, "Visible": true, "ForceFoldButton": 0, "ForceShowTitle": 0, "MinSize": -1, "FocusKeyPress": "", "FoldKeyPress": "" }, "ColourData": { }, "Content": [ { "Type": "GlobalConnectorStreamingSampler", "StyleData": { }, "Font": "", "FontSize": 16.0, "LayoutData": { "ID": "anonymous", "Size": 18.0, "Folded": 0, "Visible": true, "ForceFoldButton": 0, "ForceShowTitle": 0, "MinSize": -1, "FocusKeyPress": "", "FoldKeyPress": "" }, "ColourData": { }, "ProcessorId": "", "Index": -1, "FollowWorkspace": false }, { "Type": "SampleEditor", "StyleData": { }, "Font": "", "FontSize": 16.0, "LayoutData": { "ID": "anonymous", "Size": -0.54359197907585, "Folded": 0, "Visible": true, "ForceFoldButton": 0, "ForceShowTitle": 0, "MinSize": -1, "FocusKeyPress": "", "FoldKeyPress": "" }, "ColourData": { }, "ProcessorId": "", "Index": -1, "FollowWorkspace": false }, { "Type": "SampleMapEditor", "StyleData": { }, "Font": "", "FontSize": 16.0, "LayoutData": { "ID": "anonymous", "Size": -0.45640802092415, "Folded": 0, "Visible": true, "ForceFoldButton": 0, "ForceShowTitle": 0, "MinSize": -1, "FocusKeyPress": "", "FoldKeyPress": "" }, "ColourData": { }, "ProcessorId": "", "Index": -1, "FollowWorkspace": false } ] }, { "Type": "HorizontalTile", "StyleData": { }, "Font": "", "FontSize": 16.0, "LayoutData": { "ID": "anonymous", "Size": -0.5, "Folded": -1, "Visible": true, "ForceFoldButton": 0, "ForceShowTitle": 0, "MinSize": -1, "FocusKeyPress": "", "FoldKeyPress": "" }, "ColourData": { }, "Content": [ { "Type": "GlobalConnectorStreamingSampler", "StyleData": { }, "Font": "", "FontSize": 16.0, "LayoutData": { "ID": "anonymous", "Size": 18.0, "Folded": 0, "Visible": true, "ForceFoldButton": 0, "ForceShowTitle": 0, "MinSize": -1, "FocusKeyPress": "", "FoldKeyPress": "" }, "ColourData": { }, "ProcessorId": "", "Index": -1, "FollowWorkspace": false }, { "Type": "SampleEditor", "StyleData": { }, "Font": "", "FontSize": 16.0, "LayoutData": { "ID": "anonymous", "Size": -0.5435471100554236, "Folded": 0, "Visible": true, "ForceFoldButton": 0, "ForceShowTitle": 0, "MinSize": -1, "FocusKeyPress": "", "FoldKeyPress": "" }, "ColourData": { }, "ProcessorId": "", "Index": -1, "FollowWorkspace": false }, { "Type": "SampleMapEditor", "StyleData": { }, "Font": "", "FontSize": 16.0, "LayoutData": { "ID": "anonymous", "Size": -0.4564528899445764, "Folded": 0, "Visible": true, "ForceFoldButton": 0, "ForceShowTitle": 0, "MinSize": -1, "FocusKeyPress": "", "FoldKeyPress": "" }, "ColourData": { }, "ProcessorId": "", "Index": -1, "FollowWorkspace": false } ] } ] }, { "Type": "HorizontalTile", "Title": "Sampler", "StyleData": { }, "Font": "", "FontSize": 16.0, "LayoutData": { "ID": "anonymous", "Size": -0.5, "Folded": 0, "Visible": true, "ForceFoldButton": 0, "ForceShowTitle": 0, "MinSize": -1, "FocusKeyPress": "", "FoldKeyPress": "" }, "ColourData": { }, "Content": [ { "Type": "GlobalConnectorStreamingSampler", "StyleData": { }, "Font": "", "FontSize": 16.0, "LayoutData": { "ID": "anonymous", "Size": 18.0, "Folded": 0, "Visible": true, "ForceFoldButton": 0, "ForceShowTitle": 0, "MinSize": -1, "FocusKeyPress": "", "FoldKeyPress": "" }, "ColourData": { }, "ProcessorId": "", "Index": -1, "FollowWorkspace": false }, { "Type": "SampleEditor", "StyleData": { }, "Font": "", "FontSize": 16.0, "LayoutData": { "ID": "anonymous", "Size": -0.7952971198946208, "Folded": 0, "Visible": true, "ForceFoldButton": 0, "ForceShowTitle": 0, "MinSize": -1, "FocusKeyPress": "", "FoldKeyPress": "" }, "ColourData": { }, "ProcessorId": "", "Index": -1, "FollowWorkspace": false }, { "Type": "VerticalTile", "StyleData": { }, "Font": "", "FontSize": 16.0, "LayoutData": { "ID": "anonymous", "Size": -0.204702880105379, "Folded": -1, "Visible": true, "ForceFoldButton": 0, "ForceShowTitle": 0, "MinSize": -1, "FocusKeyPress": "", "FoldKeyPress": "" }, "ColourData": { }, "Content": [ { "Type": "SampleMapEditor", "StyleData": { }, "Font": "", "FontSize": 16.0, "LayoutData": { "ID": "anonymous", "Size": -0.7360655737704918, "Folded": 0, "Visible": true, "ForceFoldButton": 0, "ForceShowTitle": 0, "MinSize": -1, "FocusKeyPress": "", "FoldKeyPress": "" }, "ColourData": { }, "ProcessorId": "", "Index": -1, "FollowWorkspace": false }, { "Type": "SamplerTable", "StyleData": { }, "Font": "", "FontSize": 16.0, "LayoutData": { "ID": "anonymous", "Size": -0.2639344262295082, "Folded": 0, "Visible": true, "ForceFoldButton": 0, "ForceShowTitle": 0, "MinSize": -1, "FocusKeyPress": "", "FoldKeyPress": "" }, "ColourData": { }, "ProcessorId": "", "Index": -1, "FollowWorkspace": false } ] } ] }, { "Type": "Console", "StyleData": { }, "Font": "", "FontSize": 16.0, "LayoutData": { "ID": "anonymous", "Size": -0.5, "Folded": 0, "Visible": true, "ForceFoldButton": 0, "ForceShowTitle": 0, "MinSize": -1, "FocusKeyPress": "", "FoldKeyPress": "" }, "ColourData": { } } ], "CurrentTab": 0, "CycleKeyPress": "" }, { "Type": "Tabs", "StyleData": { }, "Font": "", "FontSize": 16.0, "LayoutData": { "ID": "anonymous", "Size": -0.2920741255748428, "Folded": -1, "Visible": true, "ForceFoldButton": 0, "ForceShowTitle": 0, "MinSize": -1 }, "ColourData": { }, "Content": [ { "Type": "ScriptEditor", "Title": "onInit", "StyleData": { }, "Font": "", "FontSize": 16.0, "LayoutData": { "ID": "anonymous", "Size": -0.5, "Folded": 0, "Visible": true, "ForceFoldButton": 0, "ForceShowTitle": 0, "MinSize": -1 }, "ColourData": { }, "ProcessorId": "Interface", "Index": 0, "FollowWorkspace": false, "ScriptFile": "" }, { "Type": "ServerController", "StyleData": { }, "Font": "", "FontSize": 16.0, "LayoutData": { "ID": "anonymous", "Size": -0.5, "Folded": 0, "Visible": true, "ForceFoldButton": 0, "ForceShowTitle": 0, "MinSize": -1 }, "ColourData": { }, "ProcessorId": "Interface", "Index": 0, "FollowWorkspace": false }, { "Type": "DspNetworkGraph", "StyleData": { }, "Font": "", "FontSize": 16.0, "LayoutData": { "ID": "anonymous", "Size": -0.5, "Folded": 0, "Visible": true, "ForceFoldButton": 0, "ForceShowTitle": 0, "MinSize": -1, "FocusKeyPress": "", "FoldKeyPress": "" }, "ColourData": { }, "ProcessorId": "Interface", "Index": 0, "FollowWorkspace": false }, { "Type": "ScriptBroadcasterMap", "StyleData": { }, "Font": "", "FontSize": 16.0, "LayoutData": { "ID": "anonymous", "Size": -0.5, "Folded": 0, "Visible": true, "ForceFoldButton": 0, "ForceShowTitle": 0, "MinSize": -1, "FocusKeyPress": "", "FoldKeyPress": "" }, "ColourData": { }, "ProcessorId": "Interface", "Index": 0, "FollowWorkspace": false, "Active": false }, { "Type": "ScriptContent", "StyleData": { }, "Font": "", "FontSize": 16.0, "LayoutData": { "ID": "anonymous", "Size": -0.5, "Folded": 0, "Visible": true, "ForceFoldButton": 0, "ForceShowTitle": 0, "MinSize": -1, "FocusKeyPress": "", "FoldKeyPress": "" }, "ColourData": { }, "ProcessorId": "Interface", "Index": 0, "FollowWorkspace": false, "EditMode": true } ], "CurrentTab": 1, "CycleKeyPress": "" } ] } ] }

    The vertical console is in a tab.