Forum
    • Categories
    • Register
    • Login
    1. Home
    2. VorosMusic
    3. Posts
    • Profile
    • Following 0
    • Followers 0
    • Topics 21
    • Posts 111
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: Peak-based Action

      @ustk Thank so much you for the snippet!
      and the comments are really helpful

      posted in Scripting
      VorosMusicV
      VorosMusic
    • RE: Peak-based Action

      @ustk Thats what I thought too. Not a fan of the continuous times thing, but I didn't know any other way.

      I have never used a global_cable do you have a starting point for me?

      ps. @David-Healey thank you for the reduced version! Currently still no effect in DAW.

      posted in Scripting
      VorosMusicV
      VorosMusic
    • Peak-based Action
      const var TimPan = Content.getComponent("TimPan");
      
      TimPan.setTimerCallback(function()
      {
      	var Peak = Engine.getMasterPeakLevel("L");
      	
      	if (Peak > 0.1)
      	{
      		Sat1.set("visible", false);
      		Sat2.set("visible", true);
      	}
      	else
      	{
      		Sat1.set("visible", true);
      		Sat2.set("visible", false);
      	}
      });
      
      TimPan.startTimer(50);
      

      I have written the code above, trying to switch between two graphics based on the output peak. I think it worked for oscillators in hise, but I want it to react to the sound coming from the DAW. (it's an effects-plugin)

      Any ideas if and how I could achieve something like that.
      ps. it would be good if something like that would be possible with low performance cost

      posted in Scripting
      VorosMusicV
      VorosMusic
    • RE: Scriptnode EQ-issue on exported fx-plugin

      Seems like the issue was the high-shelf node.
      The plugin functions fine without, but doesn't seem like a solution for the future to just not use it at all.

      posted in General Questions
      VorosMusicV
      VorosMusic
    • Scriptnode EQ-issue on exported fx-plugin

      I played around with scriptnode and the snex-shaper to create a sort of saturation fx-plugin.
      Above I added 3 svf-eqs to further shape the sound a bit. A lowcut for the user to set and a peak + highshelf based on the amount of drive.

      Since I added the eqs there is a weird issue. Playing an audio file in scriptnode itself behaves as expected, but in the exported plugin version there is a distinct lack of high-end. It sounds as if there was a highcut. (there is none)

      posted in General Questions
      VorosMusicV
      VorosMusic
    • RE: Hardcoded master FX - Knobs with filmstrips not working

      @David-Healey ahh, no they don't
      this might be the issue (I'll try)

      Okay, it's working now!
      Thank you!

      posted in General Questions
      VorosMusicV
      VorosMusic
    • RE: Hardcoded master FX - Knobs with filmstrips not working

      @David-Healey I've tried with and without. In both cases the knobs are frozen.

      posted in General Questions
      VorosMusicV
      VorosMusic
    • Hardcoded master FX - Knobs with filmstrips not working

      I have a weird bug with two of my knobs (with filmstrips).
      I connected them with scripting to parameters of my hardcoded master fx.

      They do work, but visually they are static. Does anyone know, why this might be?

      posted in General Questions
      VorosMusicV
      VorosMusic
    • RE: Logic pro PlugIns do not show up

      So. For everyone who is curious.
      I searched a bit online and plugins not showing up in the logic list seems to be a specific logic bug with unknown reason.
      (seems to have also happened to some people with big brand plugins like native instruments)

      The solution that seems to work for most people (including myself) is deleting (if they exist, doesn't need to be all of them):

      • user/Library/Preferences/com.apple.audio.AUHpostingService.x86-64.plist

      • user/Library/Preferences/com.apple.audio.InfoHelper

      • user/Library/Caches/AudioUnitCache

      • user/Library/Caches/com.apple.audio.AUHostingService.x86-64

      • user/Library/Caches/com.apple.audio.InfoHelper

      posted in General Questions
      VorosMusicV
      VorosMusic
    • RE: Logic pro PlugIns do not show up

      @dannytaurus !
      Bildschirmfoto 2026-01-24 um 20.11.00.png

      posted in General Questions
      VorosMusicV
      VorosMusic
    • Logic pro PlugIns do not show up

      Sadly I needed to reach out to you with a new question.
      My plugin (.component) worked once before, but is now not visible in Logic pro (again).

      It is visible and validated in the list in the plugin manager, as well as by running the command "auval -a", but I cant open the plugin in Logic, it is not in the dropdown list.

      Any ideas why?
      Yes the PlugIn codes (2 plugins) are different to all the other plugins I use.

      posted in General Questions
      VorosMusicV
      VorosMusic
    • RE: Mac (Whitebox Packages) Installer issues

      @David-Healey I just forgot the stage of setting the permissions with your provided code "chmod -R 755" before packaging

      posted in General Questions
      VorosMusicV
      VorosMusic
    • RE: Mac (Whitebox Packages) Installer issues

      @David-Healey ah, i was just dumb
      it worked now

      posted in General Questions
      VorosMusicV
      VorosMusic
    • RE: Mac (Whitebox Packages) Installer issues

      @David-Healey yes
      Voros Music: Blue Glockenspiel Cannot open component: -3000
      thats the result

      posted in General Questions
      VorosMusicV
      VorosMusic
    • RE: Mac (Whitebox Packages) Installer issues

      @VorosMusic okay the result says: Cannot open component: -3000

      posted in General Questions
      VorosMusicV
      VorosMusic
    • RE: Mac (Whitebox Packages) Installer issues

      @David-Healey I'm currently rebuilding a new version of the plugin, I'll let you know, when I'm done

      posted in General Questions
      VorosMusicV
      VorosMusic
    • RE: Mac (Whitebox Packages) Installer issues

      @Lindon the older version worked fine
      , but it seems also changing the plugin code didn't do it for me.

      posted in General Questions
      VorosMusicV
      VorosMusic
    • RE: Mac (Whitebox Packages) Installer issues

      @David-Healey

      @David-Healey said in Mac (Whitebox Packages) Installer issues:

      You probably need to clear the AU cache.

      didn't work, but I'll take a look, what I can do. Thank you

      posted in General Questions
      VorosMusicV
      VorosMusic
    • RE: Mac (Whitebox Packages) Installer issues

      @David-Healey Thank you so much, now its finally working.
      The only issue now seems to be a weird logic thing - it says the plugin is validated, but I can't find it in the list.
      Going to try to restart the Mac

      posted in General Questions
      VorosMusicV
      VorosMusic
    • RE: Mac (Whitebox Packages) Installer issues

      @David-Healey interresting - still not working
      I'm using a separate drive - should I copy the folder onto my desctop and try it there?

      posted in General Questions
      VorosMusicV
      VorosMusic