HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. Ben Catman
    3. Topics
    B
    • Profile
    • Following 0
    • Followers 0
    • Topics 13
    • Posts 51
    • Groups 0

    Topics

    • B

      SNEX Shaper Sliders *SOLVED*

      Watching Ignoring Scheduled Pinned Locked Moved ScriptNode
      10
      0 Votes
      10 Posts
      282 Views
      B

      @Lindon

      yep, i GUESS thats the problem. Kind of unstable, it seems, as sometimes it crashes hise. Anyways, SNEX is AWESOME!

      Thank you !

    • B

      Beginner: External cpp to Hise

      Watching Ignoring Scheduled Pinned Locked Moved C++ Development
      7
      0 Votes
      7 Posts
      402 Views
      B

      @Christoph-Hart

      You are right, so i doubt it tbh :)
      Anyways i will stick to my roots and work on my synthesizer which goes pretty well, including faust dsp

      Thx so much haha..

    • B

      Bug in Synth group "Spread" ?

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      4
      1 Votes
      4 Posts
      169 Views
      dannytaurusD

      Confirmed here.

      When I close and reopen the Synth Group popup module window the Spread param resets to zero.

      Seems like a bug.

      I'm on develop branch commit db780f4f (Oct 1st).

    • B

      Samples - Show Waveform and Playhead

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      4
      0 Votes
      4 Posts
      195 Views
      griffinboyG

      @Ben-Catman
      Set sample index to -1 I belive that this will do it

      see the image above

    • B

      Split Keyboard

      Watching Ignoring Scheduled Pinned Locked Moved Scripting
      3
      0 Votes
      3 Posts
      154 Views
      B

      @d-healey

      Legend! Thank you so much!!

    • B

      another one: Exporting my ScriptFX as vst3

      Watching Ignoring Scheduled Pinned Locked Moved Faust Development
      3
      0 Votes
      3 Posts
      154 Views
      d.healeyD

      Is the effect in the project's master chain?

    • B

      Faust - Hise mono FX

      Watching Ignoring Scheduled Pinned Locked Moved Faust Development
      2
      0 Votes
      2 Posts
      261 Views
      HISEnbergH

      @Ben-Catman Either use the multi node in scriptnode and run two instances of the Faust node, or duplicate the signal processing in Faust so it applies to both left and right channels.

    • B

      C++ in Hise, general question

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      3
      0 Votes
      3 Posts
      343 Views
      Christoph HartC

      If you just want to write a custom DSP module, your best bet is to create a C++ template for a node and then hotload the DLL with your custom C++ code into HISE. This will create a dummy template file with all callbacks that you then can use to implement your actual code.

      File -> Create C++ Third party node template Export -> Compile DSP networks (make sure it includes the node you've created in step 1 in the list) Open the DLL IDE project found in DspNetworks/Binaries/Builds, and run HISE in the debugger Add a hardcoded FX module where you load your DSP module

      Once you've set it up it becomes a pretty lean development workflow where you can attach your IDE to HISE.

      Besides this there are other ways to use C++ in HISE (or HISE in C++), you can create a custom C++ UI object within a HISE interface or create the entire project in C++ and use HISE as a C++ addition to JUCE. There are examples in the HISE tutorial repositories for both use cases, but chances are great that they don't work anymore :)

    • B

      Preset Browser only showing first preset folder

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      7
      0 Votes
      7 Posts
      411 Views
      B

      @d-healey
      @Lindon

      Guys you are awesome! I get it. Everything is fine. Now hold on, i will come back to you with some more questions soon.

      Solution
      Delete vst3 , delete User Preset in C:/Users//AppData/Roaming/Your CompanyName/Your product name/, compile again, run it!

      Thank you !!!

    • B

      Container with parallel effects

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      11
      0 Votes
      11 Posts
      603 Views
      B

      @Lindon

      oh my god, i get it! Now thats embarassing. Thank you so much!!

    • B

      Audio / DSP - how to start

      Watching Ignoring Scheduled Pinned Locked Moved General Questions
      10
      0 Votes
      10 Posts
      690 Views
      B

      @d-healey @Lindon @TNTHM

      Guys thank you so much, OF COURSE, i did compile it as instrument first, and then , when compiling it as FX i forgot to enable vst3 support. Now its running , and i can take a deeper dive into this ! Thank you thank you thank you

    • B

      Compiling - noob Question

      Watching Ignoring Scheduled Pinned Locked Moved Solved General Questions
      7
      0 Votes
      7 Posts
      427 Views
      LindonL

      @Ben-Catman said in Compiling - noob Question:

      @Lindon said in Compiling - noob Question:

      @Ben-Catman said in Compiling - noob Question:

      And this was the solution, IPP had to be unchecked. Thank you so much!!!

      but if you are using stuff like convolution you will need IPP for the performance improvements...

      Yes, i get that, but as noob, i need to do more research as on how to implement IPP

      read the install documentation for HISE - it tells you how to install IPP - watch Dave Healeys videos - they show you how to do it.