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

    Jeetender

    @Jeetender

    3
    Reputation
    2
    Profile views
    74
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    Jeetender Unfollow Follow

    Best posts made by 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: 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
    • RE: ScriptNode - DC. Offset

      @ustk said in ScriptNode - DC. Offset:

      @Jeetender Hise HPFs don't go below 20Hz (unless I'm wrong, even if you set the parameter to 5Hz)

      But I agree anywhere in the 5-10Hz range is better (the lower you go, the longer the delay response so it's not alway good to go below that, depends on your design)
      So if you want to go below 20Hz, you need to wrap your own C++ custom filter (or Faust or other maybe?)

      well we can go below 20hz in any scriptnode eq. just make the knob sticky and drag the edges to se the range. and yes i used a 5hz hp and its ok doing the job

      posted in General Questions
      J
      Jeetender
    • RE: ScriptNode - DC. Offset

      @Sifres said in ScriptNode - DC. Offset:

      @Jeetender yeah the stock one works just fine.

      so a HP at 5hz it is.

      posted in General Questions
      J
      Jeetender
    • RE: ScriptNode - DC. Offset

      @ustk said in ScriptNode - DC. Offset:

      @Jeetender Then your problem might be somewhere else. By definition the DC at the output of any HPF is -inf.
      It's right that it can bring artefacts in some cases that are essentially due to its response time, but it definitely kill DC.

      can a regular svf filter in scriptnode do it? or any other dedicated node ?

      posted in General Questions
      J
      Jeetender
    • RE: Airwindows code into scriptfx nodes

      @HISEnberg it dosent compile, i was just trying to compile tube2 from airwindows. if i compile all the package they do compile, but dont work properly.. i just wanted the tube, but it gives an error. may be some files missing

      > Create files
      > Sorting include dependencies
      > Copying third party files
      > Compiling dll plugin
      Re-saving file: C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\AutogeneratedProject.jucer
      Finished saving: Visual Studio 2026
      Finished saving: Xcode (macOS)
      Finished saving: Linux Makefile
      Compiling 64bit  airwindows ...
      MSBuild version 18.3.0-release-26070-10+3972042b7 for .NET Framework
      
        Main.cpp
        RNBO.cpp
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(7,1): error C2059: syntax error: '<' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(34,6): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(35,9): error C2065: 'tab': undeclared identifier [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(35,13): error C2065: 'size': undeclared identifier [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(35,18): error C2065: 'preference': undeclared identifier [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(35,28): error C2059: syntax error: ':' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(35,30): error C2059: syntax error: 'constant' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(36,5): error C2059: syntax error: '}' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(36,5): error C2143: syntax error: missing ';' before '}' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(38,15): error C2143: syntax error: missing ';' before '{' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(38,15): error C2447: '{': missing function header (old-style formal list?) [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(41,3): error C2059: syntax error: '<' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(52,51): error C2143: syntax error: missing ';' before '{' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(52,51): error C2447: '{': missing function header (old-style formal list?) [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(52,5111): error C2059: syntax error: '<' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(245,35): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(246,25): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(256,14): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(257,31): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(261,15): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(262,74): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(264,45): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(265,62): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(278,76): error C2143: syntax error: missing ';' before '{' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(278,76): error C2447: '{': missing function header (old-style formal list?) [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(278,168): error C2059: syntax error: '<' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(297,60): error C2143: syntax error: missing ';' before '-' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(297,55): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(297,60): error C2059: syntax error: '-' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(298,62): error C2143: syntax error: missing ';' before '-' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(298,57): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
        (compiling source file '../../Source/Main.cpp')
            C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(297,55):
            see declaration of 'focus'
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(298,62): error C2059: syntax error: '-' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(298,71): error C2143: syntax error: missing ';' before '{' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(298,71): error C2447: '{': missing function header (old-style formal list?) [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(301,1): error C2059: syntax error: '<' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(303,14): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(304,12): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(306,30): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(307,16): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(310,13): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(311,15): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(312,17): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(313,116): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(313,273): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(314,16): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(314,42): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(315,23): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(316,23): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(321,15): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(325,122): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(330,17): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(333,18): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(339,25): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(341,240): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(341,467): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(344,211): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(357,76): error C2143: syntax error: missing ';' before '{' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(357,76): error C2447: '{': missing function header (old-style formal list?) [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(357,88): error C2059: syntax error: '<' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(370,15): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(371,17): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(382,76): error C2143: syntax error: missing ';' before '{' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(382,76): error C2447: '{': missing function header (old-style formal list?) [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(382,118): error C2059: syntax error: '<' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,56): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,127): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,184): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,292): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,449): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,863): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,911): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,960): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,1004): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,1069): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,1407): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,1448): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,1551): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,3375): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,3439): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,3821): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,3862): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,3965): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,4534): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,4596): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,4989): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,5030): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,5133): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,5911): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,5974): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,6346): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,6387): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,6490): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,7382): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,7436): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,7495): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,7606): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,7650): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,7718): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,8042): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,8083): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,8186): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,8186): error C1003: error count exceeds 100; stopping compilation [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj]
        (compiling source file '../../Source/Main.cpp')
        
      
      
      posted in ScriptNode
      J
      Jeetender
    • RE: Phase Invert?

      @Lindon 11.jpg

      this did the job for me well, eventually, inverting the phase of left and right channel independently.

      posted in General Questions
      J
      Jeetender
    • RE: ScriptNode - DC. Offset

      @ustk ive tried the HPF at 5-10Hz.. doesn't seems to be working any specific filter module?

      posted in General Questions
      J
      Jeetender