Forum
    • Categories
    • Register
    • Login
    1. Home
    2. Allen
    3. Topics
    • Profile
    • Following 0
    • Followers 0
    • Topics 27
    • Posts 89
    • Groups 0

    Topics

    • AllenA

      What is the "Voice Setter System"?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      2
      1 Votes
      2 Posts
      492 Views
      Christoph HartC

      @Allen a change in the internal scriptnode API that improves the performance of polyphonic nodes in some cases. Nothing to worry about unless you write scriptnode classes.

    • AllenA

      Categorize items in a combo box without changing the order of items

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      5
      0 Votes
      5 Posts
      522 Views
      AllenA

      @Lindon
      Thank you! works as a charm!
      didnt know the preset system saves the texts in labels before...

    • AllenA

      Oversamping in C++

      Watching Ignoring Scheduled Pinned Locked Moved C++ Development
      9
      0 Votes
      9 Posts
      983 Views
      AllenA

      @griffinboy
      Thank you!! I'll take a look into it!

    • AllenA

      load data into wavetable synthesiser without killing all voices

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      256 Views
      griffinboyG

      @Allen

      My custom wavetable node does this, but it's c++

    • AllenA

      A Modular Interface Template [Snippet]

      Watching Ignoring Scheduled Pinned Locked Moved Presets / Scripts / Ideas
      5
      9 Votes
      5 Posts
      748 Views
      David HealeyD

      Very impressive, especially for such a small amount of code.

    • AllenA

      Wavetable Post FX processers

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      7
      0 Votes
      7 Posts
      517 Views
      AllenA

      @d-healey

      Thank you!

      Seems like it should be a fx array in a specific format...

    • AllenA

      How to setup a WebSocket Sever

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      5
      0 Votes
      5 Posts
      337 Views
      AllenA

      @d-healey Thank you! That helps!

      I forgot there's also a document repo on github....

    • AllenA

      Hise crashes when loading samples into buffers in a C++ node

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      1
      0 Votes
      1 Posts
      100 Views
      No one has replied
    • AllenA

      get values from a webview

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      1
      0 Votes
      1 Posts
      106 Views
      No one has replied
    • AllenA

      Parameter Smoothing

      Watching Ignoring Scheduled Pinned Locked Moved Presets / Scripts / Ideas
      3
      3 Votes
      3 Posts
      779 Views
      AllenA

      @dannytaurus

      sorry this example maybe a lil bit misleading.. the "True Neutral" one looks lightweight because it is no smoothing, like a control group.

      For the cpu usage, i'd say all of them are almost the same (excpet the "Chaotic Neutral" one are a lil bit higher but it actually does more things) Some of these are pretty versatile but none of these are work perfectly in all cases...

    • AllenA

      Matrix node issue

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      1
      0 Votes
      1 Posts
      178 Views
      No one has replied
    • AllenA

      multichannel scriptnode synth

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

      @Allen Use a silent synth with a poly FX, there you have the ability of setting the channel amount.

      https://docs.hise.audio/hise-modules/sound-generators/list/silentsynth.html

    • AllenA

      [Feature Request] Get rgba values from pixels

      Watching Ignoring Scheduled Pinned Locked Moved Feature Requests
      3
      0 Votes
      3 Posts
      513 Views
      rglidesR

      Krita is open source and C++, the answer might be there somewhere, surely the colour picker logic could be tinkered with. Not that I would know

    • AllenA

      Creating an array from an image

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      6
      0 Votes
      6 Posts
      1k Views
      AllenA

      @Orvillain
      Thank you!

      @griffinboy

      @griffinboy said in Creating an array from an image:

      I would like to create something where the user can load images

      I wrote a javascript code that does this. I've tried to embed that in to this project though webview but I found out I can't send the array back to onInit.

      https://docs.juce.com/master/classImage_1_1BitmapData.html
      I just found the BitmapData in JUCE and seems like it does exactly what I want.
      Not sure if i can do this but I'm tying to bring it into HISE now.

    • AllenA

      Loris toolbox crashing

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      8
      0 Votes
      8 Posts
      1k Views
      David HealeyD

      @Allen Oh I see

    • AllenA

      Number of vst plugin parameters

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      4
      0 Votes
      4 Posts
      229 Views
      AllenA

      @Christoph-Hart

      @Christoph-Hart said in Number of vst plugin parameters:

      There are ways to use dynamic plugin parameters for this scenario.

      Thank you! I'll definitely gonna look into that.

      Actually my synth has almost fully separated LR channels, and i really wanna give users an option which is setting some basic stuffs independently on each channel so a lot of these parameters are doubled. Also, there're several complex mod matrices and unison effects need to be done, which probably gonna bring another bunch of parameters here. Anyway I'll keep that number as lower as i can.

    • AllenA

      Rnbo patch with multiple buffers

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      1
      0 Votes
      1 Posts
      215 Views
      No one has replied
    • AllenA

      CPU usage - clone container

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      221 Views
      AllenA

      @Christoph-Hart

      @Christoph-Hart said in CPU usage - clone container:

      have you compiled the network to a C++ node already?

      No, because I'm still working on the faust node inside the container.

      I made it a little bit lighter and the cpu usage dropped down to about 50% now.

    • AllenA

      Implementing Csound code in Hise

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      2
      0 Votes
      2 Posts
      235 Views
      griffinboyG

      @Allen

      it's written in a bit of a different way than I'm used to.
      Maybe feed the code for one of the filters into chat gpt and ask it to decode it