HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. Allen
    3. Topics
    A
    • Profile
    • Following 0
    • Followers 0
    • Topics 27
    • Posts 87
    • Groups 0

    Topics

    • A

      What is the "Voice Setter System"?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      2
      1 Votes
      2 Posts
      396 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.

    • A

      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
      370 Views
      A

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

    • A

      Oversamping in C++

      Watching Ignoring Scheduled Pinned Locked Moved C++ Development
      9
      0 Votes
      9 Posts
      598 Views
      A

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

    • A

      load data into wavetable synthesiser without killing all voices

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

      @Allen

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

    • A

      A Modular Interface Template [Snippet]

      Watching Ignoring Scheduled Pinned Locked Moved Presets / Scripts / Ideas
      5
      9 Votes
      5 Posts
      489 Views
      d.healeyD

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

    • A

      Wavetable Post FX processers

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      7
      0 Votes
      7 Posts
      319 Views
      A

      @d-healey

      Thank you!

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

    • A

      How to setup a WebSocket Sever

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      5
      0 Votes
      5 Posts
      205 Views
      A

      @d-healey Thank you! That helps!

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

    • A

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

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

      get values from a webview

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

      Parameter Smoothing

      Watching Ignoring Scheduled Pinned Locked Moved Presets / Scripts / Ideas
      3
      3 Votes
      3 Posts
      565 Views
      A

      @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...

    • A

      Matrix node issue

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

      multichannel scriptnode synth

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

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

      Link Preview Image HISE | Audio Modules | SilentSynth

      A sound generator that produces silence.

      favicon

      (docs.hise.audio)

    • A

      [Feature Request] Get rgba values from pixels

      Watching Ignoring Scheduled Pinned Locked Moved Feature Requests
      3
      0 Votes
      3 Posts
      402 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

    • A

      Creating an array from an image

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

      @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.

    • A

      Loris toolbox crashing

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      8
      0 Votes
      8 Posts
      776 Views
      d.healeyD

      @Allen Oh I see

    • A

      Number of vst plugin parameters

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      4
      0 Votes
      4 Posts
      172 Views
      A

      @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.

    • A

      Rnbo patch with multiple buffers

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

      CPU usage - clone container

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      136 Views
      A

      @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.

    • A

      Implementing Csound code in Hise

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      2
      0 Votes
      2 Posts
      166 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