HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. jeffd
    J
    • Profile
    • Following 0
    • Followers 0
    • Topics 25
    • Posts 167
    • Groups 0

    jeffd

    @jeffd

    10
    Reputation
    7
    Profile views
    167
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    jeffd Unfollow Follow

    Best posts made by jeffd

    • RE: thoughts on using max/msp RNBO vs Faust

      @HISEnberg

      I found this and its been great so far:

      Link Preview Image
      Real-Time Audio Signal Processing in Faust | Kadenze

      This course provides an in-depth overview to the Faust programming language including fundamentals of functional programming. Students will implement a wide range of audio effects and synthesizers from scratch and learn how to turn them into various “finished” audio products. It also emphasizes the use of Faust to create DSP engines usable in existing projects.

      favicon

      (www.kadenze.com)

      I imagine it has been shared on the forum before but here it is again for beginners like me.

      free course.

      posted in General Questions
      J
      jeffd
    • RE: hard coded master effect not working all of the sudden

      @jeffd
      ok i figured it out, for some reason my send effect wasnt connected to my send container.
      no idea how that happened.

      but works again

      posted in ScriptNode
      J
      jeffd
    • RE: error C2148: total size of array must not e xceed 0x7fffffff bytes.

      @d-healey yeah it must be that particular effect.

      a tried an even simpler delay and it compiled and worked!

      seems so odd. works on mac but not on windows.

      it was just the smooth delay i am using found here:

      Link Preview Image
      delayEcho - Faust Documentation

      favicon

      (faustdoc.grame.fr)

      that is throwing the error.

      doesnt seem that complicated but that is the problem.

      Ill try to smooth out the other delay that works with some smoothing nodes in scriptnode to try to match my mac version i guess.

      posted in Faust Development
      J
      jeffd
    • RE: Sounds like Vangelis?

      @Morphoice
      sounds awesome!

      posted in General Questions
      J
      jeffd
    • RE: plugin build not asking for sample library location anymore?

      @d-healey
      i always have another backup project on my pc,
      so i started over with that.
      so unfortunately, no idea of what was actually causing it.

      posted in General Questions
      J
      jeffd
    • RE: plugin build not asking for sample library location anymore?

      @d-healey got it working finally

      time to get off my computer now lol

      happy holidays!

      posted in General Questions
      J
      jeffd
    • RE: thoughts on using max/msp RNBO vs Faust

      @clevername27
      yes! i got it to work!

      posted in General Questions
      J
      jeffd
    • RE: thoughts on using max/msp RNBO vs Faust

      @Christoph-Hart

      Do i need to update to sonoma on mac to get faust to work with the latest dev build?

      i got it to "kinda" work on ventura with an older version of faust.
      worked ok for the delay i built.

      posted in General Questions
      J
      jeffd
    • RE: send effect only goes to channels 1 and 2? ... how do I have a reverb send to all channels?

      @jeffd

      ok, im so dumb. I had the send container going back into channels 1 and 2 of container 1 and feedbacking on itself. So i added 2 other channels to container 1.

      it works now!!

      posted in General Questions
      J
      jeffd
    • RE: Faust acting up on Windows

      @aaronventure
      Im still kinda a noob with this stuff. But i had a similar problem on windows,

      I reverted back to this version of faust:
      https://github.com/grame-cncm/faust/releases/tag/2.60.3
      and that worked when compiling.

      posted in Bug Reports
      J
      jeffd

    Latest posts made by jeffd

    • RE: Is it possible to compress file size when packing the sample monolith files to HLAC?

      @Lindon
      ok thats what i was figuring, i also tried zipping up the archive and it was the same.

      thanks for the input

      posted in General Questions
      J
      jeffd
    • RE: Is it possible to compress file size when packing the sample monolith files to HLAC?

      @jeffd or maybe i am referring to the hr archive.

      im not sure what the difference is. the file that is created after exporting the sample monoloth files to an hr archive.

      posted in General Questions
      J
      jeffd
    • RE: Is it possible to compress file size when packing the sample monolith files to HLAC?

      @jeffd
      maybe a better question is..
      is it possible to compress the hlac file so as to have a smaller file size for the user to download with the installer?

      posted in General Questions
      J
      jeffd
    • Is it possible to compress file size when packing the sample monolith files to HLAC?

      Is it possible to compress file size when packing the sample monolith files to HLAC?

      I am not seeing much of a difference in size compared to the monolith files.

      posted in General Questions
      J
      jeffd
    • RE: hard coded master effect not working all of the sudden

      @jeffd
      ok i figured it out, for some reason my send effect wasnt connected to my send container.
      no idea how that happened.

      but works again

      posted in ScriptNode
      J
      jeffd
    • hard coded master effect not working all of the sudden

      For what reason would a hard coded master effect just stop working upon opening hise again? Delay effect was made in faust. I have not updated anything. was working great, and now im getting nothing.

      posted in ScriptNode
      J
      jeffd
    • RE: Possible to get a button that is already connected to a ProcessorID to also show/hide another knob?

      @d-healey i couldnt get it to.

      This is how ive gotten it to work
      probably a much better way to code this but maybe this can help someone:

       // delay temposync
       
       	const var HardcodedMasterFX3 = Synth.getEffect("HardcodedMasterFX3");
          const var KnobDelayTime = Content.getComponent("KnobDelayTime");
          
          const var btnDelaysynch = Content.getComponent("btnDelaysynch");
          
          const var KnobDelayTime1 = Content.getComponent("KnobDelayTime1");
          
          
          inline function onKnobDelayTime1Control(component, value)
          {
          	HardcodedMasterFX3.setAttribute(0, value);
          };
          
          Content.getComponent("KnobDelayTime1").setControlCallback(onKnobDelayTime1Control);
          
          
       	inline function onKnobDelayTimeControl(component, value)
       	{
       	    HardcodedMasterFX3.setAttribute(1, value);
       	    
       	};
       	    
       	Content.getComponent("KnobDelayTime").setControlCallback(onKnobDelayTimeControl);
       
       
       	inline function onbtnDelaysynchControl(component, value)
       	{
       	    HardcodedMasterFX3.setAttribute(2, value);
       	    
       	    if (value)
       	    {
      	 	    KnobDelayTime1.showControl(false);
      	 	    KnobDelayTime.showControl(true);
       	    }
       	    
       	    else
       	    {
      	 	    KnobDelayTime1.showControl(true);
      	 	    KnobDelayTime.showControl(false);
      	 	     	    
       	    } 	    
      	};
       
       	Content.getComponent("btnDelaysynch").setControlCallback(onbtnDelaysynchControl);
       
      
      posted in Scripting
      J
      jeffd
    • RE: Possible to get a button that is already connected to a ProcessorID to also show/hide another knob?

      @d-healey the parameter id for my hardcoded master effect

      0 is the timefree delay, and 1 is the timesync delay.

      i got everything to work this way
      but i couldnt get it to work using the string name

      posted in Scripting
      J
      jeffd
    • RE: Possible to get a button that is already connected to a ProcessorID to also show/hide another knob?

      @d-healey hmmm
      not working at all now.

      this works for my knob that is time synced

      Content.getComponent("KnobDelayTime").setControlCallback(onKnobDelayTimeControl);
          
       	inline function onKnobDelayTimeControl(component, value)
       	{
       	    HardcodedMasterFX3.setAttribute(1, value);
       	    //Console.print(value);
       	};
       	    
       	Content.getComponent("KnobDelayTime").setControlCallback(onKnobDelayTimeControl);
       
      

      but now the free knob is not responding at all

      posted in Scripting
      J
      jeffd
    • RE: Possible to get a button that is already connected to a ProcessorID to also show/hide another knob?

      @d-healey

      this doesnt work?

      HardcodedMasterFX3.TimeFree.setAttribute(value);
      
      posted in Scripting
      J
      jeffd