Forum
    • Categories
    • Register
    • Login
    1. Home
    2. hyperphonias
    3. Posts
    H
    • Profile
    • Following 0
    • Followers 0
    • Topics 15
    • Posts 52
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: Protection for my plugins

      @David-Healey Perfect, i'll search everything

      thanks for helping me 🙂

      posted in General Questions
      H
      hyperphonias
    • RE: Protection for my plugins

      @David-Healey

      Yes, exactly!

      I mainly wanted to confirm that this kind of approach is feasible in practice. What I’m really looking for at this stage are a few high-level hints. For example, common ways to generate a reasonably stable hardware ID and whether it’s possible for the plugin to automatically create a local authorization file after validation, like an auto sign-in.

      I just need these small details before starting so I can get a clear idea of the overall architecture. Any advice or best practices would be very welcome.

      posted in General Questions
      H
      hyperphonias
    • RE: Protection for my plugins

      @David-Healey I think there’s a misunderstanding here.

      The authorization tool would not be distributed to end users.

      The user would only provide their HWID, and I would generate the corresponding signed authorization key on my side and send it back to them. The plugin would then only perform local validation using the embedded public key.

      These plugins are not publicly released products. They’re sold to a relatively small number of clients, which makes the likelihood of targeted cracking quite low. However, without any form of verification, the likelihood of the files simply being shared between users would be relatively high.

      The goal isn’t to stop cracking in general, but to discourage casual sharing of the plugin between friends

      posted in General Questions
      H
      hyperphonias
    • RE: Protection for my plugins

      @David-Healey The authorization tool would run locally.

      The goal is to keep the whole system offline, without requiring a server-side check

      We’re planning to use Ed25519 for signing, similar to what we’ve used in previous projects

      We haven’t fully decided on using Ed25519 yet. Any advice or recommendations would be appreciated

      posted in General Questions
      H
      hyperphonias
    • RE: Protection for my plugins

      @David-Healey The HWID would be generated locally, and an external tool would be used to generate the corresponding authorization token, which the plugin validates at runtime.

      posted in General Questions
      H
      hyperphonias
    • RE: Protection for my plugins

      @David-Healey I do understand what you mean, I know that it doesn't cover every vulnerabilities and it can get cracked at any moment.

      The goal of this security system is to discourage file sharing, not to provide unbreakable protection. I mean, I know its never gonna be between the hands of team R2R or some pentest pro, it is not meant to be available for purchase online that's why I want to make a security using the HWID.

      posted in General Questions
      H
      hyperphonias
    • Protection for my plugins

      Hello,

      I'm currently developing plugins for my customers and I need to implement a basic licensing / verification system to prevent my plugins getting leaked.

      My idea is to build a local (offline) protection system based on a Hardware ID (HWID) generated from the user's machine.

      The HWID would then be cryptographically signed (or validated) and stored in a local file, allowing the plugin to auto-authorize itself on startup without requiring an online check.

      I'm not asking for a full implementation, just some guidance on:
      How to generate a HWID

      Thanks in advance.

      posted in General Questions
      H
      hyperphonias
    • Saving Presets

      Hello, i'm making an eq and on the top i want to put a preset saving. And I was wondering, am I obliged to put a FloatingTilePanel with the Preset Browser, or I can do it without it
      cddf4927-4860-4517-8233-dcf14205ec3e-image.png

      posted in General Questions
      H
      hyperphonias
    • RE: Convertings problems

      @Chazrox Thank you so much lol

      posted in Scripting
      H
      hyperphonias
    • Convertings problems

      Hello, im facing some convertion problems while trying to convert some dB from my band in parametriq EQ. Sometimes it works sometimes it glitches.

      here's the chunk of the code:
      var gainValue = Math.round(band.gain * 100) / 100;

          var band = bandValues[obj.index];
          var freqText = Math.round(band.freq) + " Hz";
          var gainValue = Math.round(band.gain * 100) / 100; 
          var gainText = (gainValue >= 0 ? "+" : "") + gainValue + " dB";
          var qValue = Math.round(band.q * 10) / 10; 
          var qText = "Q " + qValue;
          var typeText = typeNames[Math.max(0, Math.min(4, Math.round(band.type)))];
      

      39aff3f5-c5e2-47af-bd05-ecd27d3a1349-image.png
      8d294410-9c5b-417e-888f-cf865a24e78e-image.png

      posted in Scripting
      H
      hyperphonias
    • script node flip phase

      Hello, is there is a way to flip the phase with scriptnode? juste like in ableton or bitwig Left Right thing

      c43b313a-5749-4e5a-b90f-bfd5cde7145e-image.png

      posted in ScriptNode
      H
      hyperphonias
    • Gate Node sidechaining

      hello, so I wanted to know if in scriptnode its possible to do this type of sidechaining thing like in the Pro G (fabfilter)

      So basically the way it works is: the gate will only affect in the frequency range selected. For exemple it helps if you have pops or things like desk vibrations below the frequency range, it will not open the gate.

      c27e3401-422b-491c-b852-1c83ca9b36a5-image.png

      posted in ScriptNode
      H
      hyperphonias
    • RE: Recompiled Hise

      @HISEnberg I see I see thanks for helping, since you're there i'm asking you this because I'm searching thru the forum and I can't find it.

      I want to control these 2 frequencies at the same time to make a Solo button, but I don't know how i'm supposed to control them both at the same since you can put only 1 ProcessorID.

      df14e22c-7c53-4730-8212-d58822954a13-image.png

      posted in ScriptNode
      H
      hyperphonias
    • RE: Recompiled Hise

      @HISEnberg Wow thank you bro appreciate, last question (im sorry for bothering its really to gain time ^^'), is it possible to make it go from top to bottom rather than bottom to top?

      posted in ScriptNode
      H
      hyperphonias
    • RE: Control ScriptFX using code

      @d-healey oh yeah you're right I was at the top of the block not of the entire dsp sorry

      posted in Newbie League
      H
      hyperphonias
    • RE: Control ScriptFX using code

      @d-healey hmmm, I think im missing something?

      6424dfb3-b299-4295-98da-ac43d07eb8e5-image.png

      posted in Newbie League
      H
      hyperphonias
    • RE: Control ScriptFX using code

      @d-healey oh how you did it with processor and parameter ID?

      posted in Newbie League
      H
      hyperphonias
    • RE: Control ScriptFX using code

      @d-healey to control with processor and parameter ID you need to compile the dsp network first

      posted in Newbie League
      H
      hyperphonias
    • Control ScriptFX using code

      Hello, I'm very new and i'm trying to figure out how to control a knob without compiling the dsp network.

      My goal is to control this in the UI
      bb9d3e27-b1c5-46bf-a594-4d435c87b7be-image.png

      To control any parameter, thanks
      1065e411-244f-47b7-b98d-8f3c52b5b017-image.png

      posted in Newbie League
      H
      hyperphonias
    • RE: Recompiled Hise

      @HISEnberg Hello thanks for replying i know im late i just tried it and its so easy thank you very much, do you know if its possible to make it smoother? because i feel l ike its just spawning and despawning from nowhere

      posted in ScriptNode
      H
      hyperphonias