Forum
    • Categories
    • Register
    • Login
    1. Home
    2. Recent
    Log in to post
    Load new posts
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics
    • All categories
    • All tags
    • D

      xcpretty Not Detected After Install on macOS Tahoe M1: Compiling Fails in HISE Export

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      137
      0 Votes
      137 Posts
      3k Views
      David HealeyD

      @DJJD12345 Show me

    • N

      Errors in Visual Studio 2025 compiling hise

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      39
      0 Votes
      39 Posts
      135 Views
      N

      @David-Healey they're making more and more of these budget computers these days. They basically have a camera flash drive soldered in as the hard drive. I'm not sure how that's even usable, because there is only about 25gb left after windows. It's almost laughable!

    • resonantR

      Phase Correlation Meter

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      2
      0 Votes
      2 Posts
      24 Views
      ustkU

      @resonant you'll need to run your own algorithm. It's not to hard to make, go search google for something like phase meter algorithm or left-right correlation algorithm you should definitely find something. There are several ways for doing this depending on the complexity and the response needed.

    • Oli UllmannO

      Build Failed on Mac: last develop commit (3e1718f)

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      14
      0 Votes
      14 Posts
      119 Views
      Christoph HartC

      it's fixed now.

    • U

      Error!

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      2
      0 Votes
      2 Posts
      25 Views
      Oli UllmannO

      @udalilprofile
      This bug has already been discussed twice in the forum. Do not use the latest commit to compile HISE.

      Use this commit: cf3fc78

      You can do this as follows:

      Clone HISE in the usual way with git clone https://github.com/christophhart/HISE.git Set the head to the last working commit: git reset --hard cf3fc78

      Now you can compile HISE without errors.

      PS. Use the develop branch.

    • DanHD

      Phase Offset Mod Signal in Scriptnode

      Watching Ignoring Scheduled Pinned Locked Moved ScriptNode
      1
      0 Votes
      1 Posts
      12 Views
      No one has replied
    • F

      Export failed

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      2
      0 Votes
      2 Posts
      23 Views
      LindonL

      @flameshower did you pre-install ipp?

    • F

      Creating a MIDI copier/transposer in HISE

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      11
      0 Votes
      11 Posts
      81 Views
      F

      @David-Healey An issue I run into now is when

      function onNoteOn() { for (note in track) { if (note.isNoteOn()) { Console.print(note.dump()); Console.print("Note: " + note.getNoteNumber()); //Synth.playNote(note.getNoteNumber(), note.getVelocity()+1); //Synth.playNote(note.getNoteNumber()+12, note.getVelocity()+1); //Synth.playNote(note.getNoteNumber()-12, note.getVelocity()+1); } //Synth.noteOffByEventId(note.getEventId()); } } function getNoteOn(list, noteOn) { for(note in track) { if(note.isNoteOn() && note.getEventId() == noteOn.getEventId()) return note; } } MIDIPlayer1.flushMessageList(track);

      I uncomment any of the synth.playNote function calls, it plays very distorted, notes playing for far longer than they are supposed to, like I mentioned earlier.

    • David HealeyD

      getPosition function

      Watching Ignoring Scheduled Pinned Locked Moved Feature Requests
      4
      2 Votes
      4 Posts
      30 Views
      D

      @David-Healey I have an Utils.js file where I create abstractions for every tedious thing like this, but a native function would be useful indeed

    • J

      Handling un-pitched loops in the sampler

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      2
      0 Votes
      2 Posts
      76 Views
      D

      @JamesC if I understand correctly, you want the loops to follow the DAW tempo, but the Sampler’s tempo-sync won’t time-stretch them. Wouldn’t be better to use an Audio Loop Player module instead?

    • dannytaurusD

      How to disable CMD+scroll in the script editor?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      12
      0 Votes
      12 Posts
      86 Views
      D

      @dannytaurus oh, didn't know about this feature. I actually like it 😬

    • T

      My project file doesn't exist

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      4
      0 Votes
      4 Posts
      23 Views
      David HealeyD

      @tjrob

      That shortcut takes you to the project's App Data folder. This folder is created when you compile and run your plugin. It's used to store plugin data files on the end-user's system. It's unrelated to your HISE project folder.

      https://docs.hise.dev/working-with-hise/menu-reference/file/index.html#show-hise-app-data-folder-in-explorer

      https://docs.hise.dev/working-with-hise/project-management/index.html

    • iamlampreyI

      C++ Version Preprocessor?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      54 Views
      iamlampreyI

      @Christoph-Hart said in C++ Version Preprocessor?:

      everything will explode

      I am yet to experience an explosion, RTNeural-NAM is using std::span and the Linux/Mac compilers are complaining unless I switch the AutoGeneratedProject.jucer to C++20

      C++17 works fine on Windows so I'm not even sure if the span is ever actually created

      Edit: Yep it's some weird ghost function which isn't being called anywhere, might be for a specific edge-case but I can comment it out and use C++17

    • lijas90L

      Plugin Shows Sample Installation Panels on Startup Even After Configuration

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      23 Views
      lijas90L

      @David-Healey said in Plugin Shows Sample Installation Panels on Startup Even After Configuration:

      HISE_DEACTIVATE_OVERLAY=1

      Eureka! Thanks David, you always save me.😀

    • pcs800P

      Example snippets that cause Hise to crash on load.

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      5
      0 Votes
      5 Posts
      45 Views
      pcs800P

      @Christoph-Hart I updated to the latest dev build and the crashing no longer happens

    • dannytaurusD

      Multi-shape and multi-colour SVG

      Watching Ignoring Scheduled Pinned Locked Moved Solved General Questions
      12
      0 Votes
      12 Posts
      111 Views
      dannytaurusD

      @ustk Yes, both have their advantages.

      For things like logos or complex icons, I think I'll always use Base64 SVG from now on because it has the flexibility of allowing a mix of stroked paths and solid fills, along with multiple colours.

      If I need to use simpler vector that require a dynamic colour, like knob markers, I'll use Base64 Path.

    • pcs800P

      Sticky knobs

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      32
      0 Votes
      32 Posts
      3k Views
      David HealeyD

      @pcs800 The bootcamp course has the latest compiling videos

      https://audiodevschool.com/courses/hise-bootcamp/

    • M

      Mac build, exporting on Windows?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      34 Views
      M

      @MysticForgeRider yes to both!

      But I've found a workaround for the moment: create a new project, and copy all elements manually. Long live VM's.

    • J

      Exporting samples efficiently

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      3
      0 Votes
      3 Posts
      34 Views
      J

      @David-Healey said in Exporting samples efficiently:

      @jonalexander23 The samples aren't embedded. Does your project contain images?

      Thanks that's good to know..it's a small project but actually can't be small as 77mb of samples (they total around 100mb in Samples folder)..there are 20mb of images..so guess the rest is just stuff in the build..thanks again.

    • S

      HISE MIDI FX

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      71
      0 Votes
      71 Posts
      281 Views
      S

      After all struggling I've decided to switch to pure C++ VST3 programming.