Forum
    • Categories
    • Register
    • Login
    1. Home
    2. Jeetender
    J
    • Profile
    • Following 0
    • Followers 0
    • Topics 12
    • Posts 80
    • Groups 0

    Jeetender

    @Jeetender

    4
    Reputation
    2
    Profile views
    80
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    Jeetender Unfollow Follow

    Best posts made by Jeetender

    • RE: Latency issues..

      @Jeetender said in Latency issues..:

      I made a vst everything works fine, but when i open that vst into any daw like flstudio/live/reaper/reason it gives out latency.. how do i compensate the latency automatically?

      i did try this.. but nothing worked, BUT i had a dynamic module in the end of the chain, which had a limiter, i removed it and then the latency was gone after compiling the vst..

      posted in General Questions
      J
      Jeetender
    • RE: This script processor has a network that consumes the parameters

      @dannytaurus said in This script processor has a network that consumes the parameters:

      @Jeetender Check the docs. Looks like you're missing an 's' at the end - setForwardControlsToParameters

      https://docs.hise.dev/scripting/scripting-api/dspnetwork/index.html#setforwardcontrolstoparameters

      Yes it was missing am 's' at the end, thank you. it works but gives out a warning in almost every script "Warning: 'local' used outside of callback/inline function, treating as 'var' "

      posted in General Questions
      J
      Jeetender
    • RE: Knob values displayed as percentage

      @David-Healey 😖 you know what david, my screen time for today is beyond limits, i think i should take a break and continue tomarrow.. too much coding for today.. But thank you the plugin is done.

      posted in Scripting
      J
      Jeetender
    • RE: Knob values displayed as percentage

      @David-Healey i dont know whats wrong, but deleting panels and remaking them agian solved the problem and now the values are showing perfectly and fine. thank you for you guidance and help.. and after i restart hise, i wont work.. 😠

      posted in Scripting
      J
      Jeetender

    Latest posts made by Jeetender

    • RE: Latency issues..

      @Jeetender said in Latency issues..:

      @Jeetender said in Latency issues..:

      I made a vst everything works fine, but when i open that vst into any daw like flstudio/live/reaper/reason it gives out latency.. how do i compensate the latency automatically?

      i did try this.. but nothing worked, BUT i had a dynamic module in the end of the chain, which had a limiter, i removed it and then the latency was gone after compiling the vst..

      can u please elaborate, coz iam not much of a DSP coding guy. but i had tha plugin at the end of the chain which already was of no use.. and i dont know why doesn't it report the latency to the DAW automtically, the other plugin ive made do this well and good, no latency with other plugins.. but i am here to learn more about this.

      posted in General Questions
      J
      Jeetender
    • RE: Latency issues..

      @Jeetender said in Latency issues..:

      I made a vst everything works fine, but when i open that vst into any daw like flstudio/live/reaper/reason it gives out latency.. how do i compensate the latency automatically?

      i did try this.. but nothing worked, BUT i had a dynamic module in the end of the chain, which had a limiter, i removed it and then the latency was gone after compiling the vst..

      posted in General Questions
      J
      Jeetender
    • Latency issues..

      I made a vst everything works fine, but when i open that vst into any daw like flstudio/live/reaper/reason it gives out latency.. how do i compensate the latency automatically?

      posted in General Questions
      J
      Jeetender
    • RE: Latency problem on FX plugins...

      i had to set eh latency upto 80ms, for the sample to sync. inside flstudio and reaper

      posted in Bug Reports
      J
      Jeetender
    • RE: compiled DSP network wont work after vst export

      @David-Healey Thank you. It compiled and worked just fine.

      posted in General Questions
      J
      Jeetender
    • compiled DSP network wont work after vst export

      in my current project, iam using a compiled dsp network from another project, i copied the dll file of the dspnetwork from the other project into my current project and used is as a hardcoded master fx. it works fine in hise, but as i export the vst, it wont work. where as everything else works. any idea of what might be the problem?

      posted in General Questions
      J
      Jeetender
    • RE: linking slider to a simplegain, the other way around.

      @ulrik IMG_5324.mov

      const laf = Content.createLocalLookAndFeel();
      
      laf.loadImage("{PROJECT_FOLDER}vumeter.png", "VUMeter");
      laf.registerFunction("drawMatrixPeakMeter", function(g, obj)
         {
      	var a = obj.area;
      	var z_value = 0;
      	var frames = 128;
      	var zerpnt = 90;
      	
      	for (i = 0; i < 2; i++)
      	{
      		var z = obj.peaks[i];
             	if (z <= 1.0)
      		z_value = Math.round((zerpnt - 1) * z);
             	else if (z > 1.0 && z <= 1.413)
      		z_value = Math.round((zerpnt - 1) + (frames - zerpnt) * (z - 1.0)/0.413);
      	else
      		z_value = frames - 1;
      		g.drawImage("VUMeter", [i * 150, 0, 128, a[3]], 0, 80 * z_value);					
      	}
      });
      
      const var FloatingTile1 = Content.getComponent("FloatingTile4");
      FloatingTile1.setLocalLookAndFeel(laf);
      
      
      posted in Scripting
      J
      Jeetender
    • RE: linking slider to a simplegain, the other way around.
      onst var SimpleGain = Synth.getEffect("SimpleGain1");
      const var vumt = Content.getComponent("vumt");
      
      const var VUTimer = Engine.createTimerObject();
      VUTimer.setTimerCallback(function()
      {
          var peak = SimpleGain.getAttribute(SimpleGain.Gain);
          vumt.setAttribute(vumt.Value, peak);
          Console.print(peak);
      });
      VUTimer.startTimer(80);
      

      its reading the gain values and printing the gain value on the console as i move the gain knob on teh simplegain module,

      posted in Scripting
      J
      Jeetender
    • RE: linking slider to a simplegain, the other way around.

      @David-Healey i tried it, also took reference from a snippet, but the filmstrip is flickering ...

      @ulrik its not reading .gain too..

      posted in Scripting
      J
      Jeetender
    • linking slider to a simplegain, the other way around.

      i have a filmstrip of a vumeter on a slider, iam just tryin to effect the slider values with the value of the peak on a simplegain, iam using the getAttribute function ,but the console says function now found. i could have used a matrixpeakmeter with laf to run the filmstrip but this is just how i want to do it.

      
      const var SimpleGain = Synth.getEffect("SimpleGain1");
      const var vumt = Content.getComponent("vumt");
      
      const var VUTimer = Engine.createTimerObject();
      VUTimer.setTimerCallback(function()
      {
          var peak = SimpleGain.getAttribute(SimpleGain.Peaks);
          vumt.setValue(peak);
      });
      VUTimer.startTimer(30);
      
      posted in Scripting
      J
      Jeetender