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
    • David HealeyD

      [Feature Request] Relative includes

      Watching Ignoring Scheduled Pinned Locked Moved Scripting script include folder relative path
      3
      4 Votes
      3 Posts
      366 Views
      David HealeyD

      Claude PR

    • MorphoiceM

      soft_bypass and faust

      Watching Ignoring Scheduled Pinned Locked Moved Faust Development
      22
      0 Votes
      22 Posts
      4k Views
      S

      @aaronventure yes FIR19 is the latest version.

    • dannytaurusD

      Making a basic 2-op FM synth in ScriptNode

      Watching Ignoring Scheduled Pinned Locked Moved ScriptNode
      8
      0 Votes
      8 Posts
      350 Views
      D

      @dannytaurus I'm using Scriptnode. This issue was reported earlier here https://forum.hise.audio/topic/10321/scriptnode-synth-smoothes-transients

    • HISEnbergH

      Autogenerated Projucer Errors (JUCE 8)

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      1
      1 Votes
      1 Posts
      83 Views
      No one has replied
    • M

      [URGENT] Build Fail: 66 Errors in SharedCode (math.h, ctype.h missing) - Windows 11 / VS2022

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      2
      0 Votes
      2 Posts
      135 Views
      David HealeyD

      @MZLY Have you compiled HISE?

    • Oli UllmannO

      Custom Settings Global BPM

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved General Questions
      5
      0 Votes
      5 Posts
      169 Views
      Oli UllmannO

      @David-Healey
      I tested it in Logic and it doesn't work there either. I will now implement it manually. However, it would of course be nice if it also worked via the custom settings.

    • Christoph HartC

      AI Roadmap

      Watching Ignoring Scheduled Pinned Locked Moved AI discussion
      1
      14 Votes
      1 Posts
      230 Views
      No one has replied
    • J

      convert samplemap to hlac monolith crashing

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      17
      0 Votes
      17 Posts
      278 Views
      J

      @Lindon
      The sample map issue was a seperate issue, but didnt happen until i moved to juce 8.

      i got this error here
      #error "Building for OSX 10.10 and earlier is no longer supported!
      when trying to actually export an audiounit / vst on my mac build with juce 8.

      I actually didnt get that error on a build with juce 8 i tried on windows.

      but i still couldnt convert the samplemap to hlac monolith on the windows build.

    • ulrikU

      getPopupMenuTarget

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      161 Views
      ulrikU

      @dannytaurus said in getPopupMenuTarget:

      Thank you!

    • B

      Radio Button - wrong default value

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      6
      0 Votes
      6 Posts
      143 Views
      B

      @ulrik

      SOLVED - my bad. I am a bit tired today. ;) Thank you so much ! Hope you have seen the comment in my code as well haha

    • S

      LV2 and Headless Builds

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      2
      0 Votes
      2 Posts
      126 Views
      David HealeyD

      @scottmire It's not possible with JUCE6 but should be with JUCE8, I don't know what would be required on the HISE side though.

    • StraticahS

      Draggable filter panel creates UI glitch (WIN FL)

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      1
      0 Votes
      1 Posts
      78 Views
      No one has replied
    • HISEnbergH

      Adding External FX Libraries to the HISE source code

      Watching Ignoring Scheduled Pinned Locked Moved Solved C++ Development
      7
      0 Votes
      7 Posts
      275 Views
      ustkU

      Coming right on time (well, when ready...) as I am to release a set of plugins based on the same engine so if fixes and updates can be done just once for the bundle I can already see the benefit of this!

    • DanHD

      Using custom preset system - as in the actual presets themselves, not a browser

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      25
      0 Votes
      25 Posts
      682 Views
      DanHD

      @Orvillain said in Using custom preset system - as in the actual presets themselves, not a browser:

      Why do you want to do this?

      Because it kills voices and I want to silently update some metadata like tags and author for presets.

      But.... your method seems to be working!!! I feel like I'm going to have to remove certain characters in case it messes up the preset code....

    • LindonL

      iPlug3

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      15
      3 Votes
      15 Posts
      447 Views
      David HealeyD

      I also saw this one: https://github.com/Noizefield/audio-plugin-coder

    • M

      Issue: Keyboard Colouring logic is "one step behind" when switching Sample Maps (Race Condition?)

      Watching Ignoring Scheduled Pinned Locked Moved Solved Scripting
      7
      0 Votes
      7 Posts
      179 Views
      M

      @Lindon Thanks for the link!

      That explains why I was getting the 'Unknown Function' error—I was trying to call it on the Synth object instead of a ScriptPanel.

      I’ve set up a hidden panel to handle the callback now, and it’s working perfectly. Appreciate the clarification!"

    • David HealeyD

      Moonbase

      Watching Ignoring Scheduled Pinned Locked Moved General Questions moonbase
      35
      0 Votes
      35 Posts
      2k Views
      J

      @David-Healey said in Moonbase:

      if you then reexport from HISE the juicer file will be recreated and your changes overwritten, that's probably the issue you were running into

      yes i believe this was the issue.
      but im also wondering if i somehow screwed up changing over from 6 to 8.

    • V

      Play an Audio File?

      Watching Ignoring Scheduled Pinned Locked Moved Newbie League
      8
      0 Votes
      8 Posts
      201 Views
      dannytaurusD

      @veryveryhaps The Audio Loop Player responds to MIDI like any other sound generator.

      If you only want to trigger it from the UI try playNoteFromUI. It's meant for triggering sound generators from UI elements. It simulates pressing a key on the virtual keyboard.

      There's also the cunningly-slightly-differently-named noteOffFromUI to stop playback.

      As for pausing playback and continuing from the same point, I'm not sure.

      const var loopNote = 60; const var channel = 1; inline function onPlayButton(component, value) { if (value) // button ON Synth.playNoteFromUI(channel, loopNote, 127); else // button OFF Synth.noteOffFromUI(channel, loopNote); } Content.getComponent("Button1").setControlCallback(onPlayButton);
    • ulrikU

      Right click on a windows tablet

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      16
      0 Votes
      16 Posts
      291 Views
      ulrikU

      @Oli-Ullmann Yes, I do exactly like that

    • A

      AVX WIN

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      2
      0 Votes
      2 Posts
      141 Views
      Christoph HartC

      @Anhuarcin It could be possible that there are code paths generated for runtime dispatch, so that if the CPU detection shows AVX support, then it will branch to use that - I can imagine that IPP does stuff like that to squeeze out performance.