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

    Topics

    • A

      multichannel scriptnode synth

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

      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
      141 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
      349 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
      110 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
      83 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
      55 Views
      No one has replied
    • A

      CPU usage - clone container

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      85 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
      121 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

    • A

      Default Oversampling Filter

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      8
      1 Votes
      8 Posts
      220 Views
      Christoph HartC

      @Dan-Korneff you've been waiting long enough now :)

    • A

      Recorder and file player node not working in fx plugin

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

      @Allen does the file player even work in an FX plugin?

    • A

      reg declaration "error at definition"

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      7
      0 Votes
      7 Posts
      198 Views
      d.healeyD

      @Allen Yes your code could be vastly improved. If you send me your project I will make a video for my YouTube channel going through some of the things I think could help to make your code more manageable.

      Here are some general tips.

      Never use var unless you have no other choice.

      Objects and arrays should generally be declared as const (or local within inline functions).

      All those reg variables you have could be replaced with a single const - look up JSON.

    • A

      Stretch player node is not compilable

      Watching Ignoring Scheduled Pinned Locked Moved Bug Reports
      2
      0 Votes
      2 Posts
      164 Views
      A

      After a bunch of testing and recompilng i still got the excatly same linker error... I'm not sure but seens like some of the files are missing.

      I also tried leave it uncompiled but it won't actually include in the compiled plugins even just a blank script with only one node inside. Also sometime it pops up sanity check failed too.

      Has anybody successfully compile the stretch player node? It's all about this only one node so I think I probably missed something....

    • A

      stretch player node compile error

      Watching Ignoring Scheduled Pinned Locked Moved ScriptNode
      2
      0 Votes
      2 Posts
      140 Views
      A

      by the way, it's a script fx and the stretch player shares a buffer with a recorder works passively like a granular effect.

      p15.png

    • A

      Wavetable monolith file not read when compiling

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      8
      0 Votes
      8 Posts
      339 Views
      A

      okay guys.. finally i fixed it by manually changing the sample folder in a custom setting floating tile.

      P3.png

      Both .hwm and .hr1 are work fine now.
      The popup installing sample window seens like not works well in this project for some reason...

      For the warnning C4715, I not quite sure if it actually matters in this case. I bypassed it by simply adding a return 0 but I think it's ok to just leave it alone cuz it won't prevent anything from compiling.

    • A

      drawing complex lfo

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

      @Allen said in drawing complex lfo:

      Hi there! I decide to add a vector synthesis module to my project and I wonder how could draw lfo like this in Maxmsp?
      226.png
      I know I probably could do this with the Webview and Javascript but I wanna make sure if i missed something simple.

      look for the corresponding Lissajous algo.

      Link Preview Image Lissajous curve - Wikipedia

      favicon

      (en.wikipedia.org)