HISE Logo Forum
    • Categories
    • Register
    • Login
    1. HISE
    2. bendurso
    • Profile
    • Following 0
    • Followers 0
    • Topics 72
    • Posts 479
    • Groups 0

    bendurso

    @bendurso

    79
    Reputation
    63
    Profile views
    479
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online
    Age 29
    Website zaksound.com
    Location Argentina

    bendurso Unfollow Follow

    Best posts made by bendurso

    • Automatic Installer for Windows: Inno Setup Script

      Hello!

      I thought that maybe for some this Inno Setup script could be useful. It installs the plugin + samples automatically on the user's computer.

      It does the following:

      1. Asks the user where they have their VST3 plugins folder. {commoncf}\VST3 is selected by default, but the user can change it.
      2. It then asks where you want to install the samples.
      3. And finally it creates the LinkWindows file with the chosen location of the samples.

      (In this case I also added the file "AudioResources.dat" so that it is automatically installed in the userappdata folder)

      In this way, the user simply opens the plugin and already has everything configured.

      Paying attention to the * symbol at the end of the source file location because it includes the folders inside the selected folder. For example, inside the "D:\Downtown Grand Piano\Samples Folder*" location I have the folder called Downtown Grand Piano Samples. Inno Setup will include the folder inside “Samples Folder”, which is "Downtown Grand Piano Samples" (You can check the Inno Setup documentation if you need to understand this better.)
      Then the linkWindows file is autogenerated with the location chosen by the user + \Downtown Grand Piano Samples at the end.

      (I received help from GPT to automatically generate the linkWindows file, although it took me some time to make it work properly)

      [Files]
      Source: "D:\Downtown Grand Piano\AudioResources.dat"; DestDir: "{userappdata}\ZAK Sound\Downtown Grand Piano"; 
      Source: "D:\Downtown Grand Piano\VST3 File\*"; DestDir: "{code:GetVst3Directory}"; Flags: recursesubdirs
      Source: "D:\Downtown Grand Piano\Samples Folder\*"; DestDir: "{code:GetSampleDirectory}"; Flags: recursesubdirs createallsubdirs
      
      [Code]
      var
        Vst3DirectoryPage: TInputDirWizardPage;
        SampleDirectoryPage: TInputDirWizardPage;
      
      procedure InitializeWizard;
      begin
          SampleDirectoryPage := CreateInputDirPage(wpSelectDir, 'Select Samples Directory', 'Where would you like to install the samples?', 'Select the location where you want to install the samples (2.58GB). You can use an external drive if you have one.', False, '');
          SampleDirectoryPage.Add('');
          SampleDirectoryPage.Values[0] := ExpandConstant('{commoncf}\VST3\Downtown Grand Piano');
          
          Vst3DirectoryPage := CreateInputDirPage(wpSelectDir, 'Select VST3 Directory', 'Where would you like to install the VST3 file?', 'Select the default location of your VST3 plugins. In most cases, there is no need to make any changes.', False, 'Size: 29MB');
          Vst3DirectoryPage.Add('');
          Vst3DirectoryPage.Values[0] := ExpandConstant('{commoncf}\VST3');
      
       end;
      
      function GetVst3Directory(Param: String): String;
      begin
        Result := Vst3DirectoryPage.Values[0];
      end;
      
      function GetSampleDirectory(Param: String): String;
      begin
        Result := SampleDirectoryPage.Values[0];
      end;
      
      
      procedure CurStepChanged(CurStep: TSetupStep);
      var
        LinkWindowsFilePath: string;
        LinkWindowsFileContent: string;
        SampleDirectory: string;
        BaseDirectory: string;
      begin
        if CurStep = ssInstall then
        begin
          BaseDirectory := ExpandConstant('{userappdata}\ZAK Sound\Downtown Grand Piano');
          ForceDirectories(BaseDirectory);
      
          LinkWindowsFilePath := BaseDirectory + '\LinkWindows';
          if FileExists(LinkWindowsFilePath) then
            DeleteFile(LinkWindowsFilePath);
      
          SampleDirectory := GetSampleDirectory('');
      
          LinkWindowsFileContent := SampleDirectory + '\Downtown Grand Piano Samples';
      
          SaveStringToFile(LinkWindowsFilePath, LinkWindowsFileContent, False);
      
      posted in Blog Entries
      bendursoB
      bendurso
    • RE: Waveform LAF / PR

      @bendurso Well, I just made my own svg paths for the waveforms. If someone needs them, here it goes:

      Sine
      110,109,0,0,0,0,0,0,72,66,98,0,0,200,65,0,0,0,0,0,0,150,66,0,0,200,66,0,0,200,66,0,0,72,66,101,0,0
      
      Saw
      110,109,0,0,200,66,0,0,72,66,108,0,0,200,66,0,0,0,0,108,0,0,72,67,0,0,200,66,108,0,0,72,67,0,0,72,66,99,101,0,0
      
      Square
      110,109,0,0,0,0,0,0,200,66,108,0,0,0,0,0,0,72,66,108,0,0,72,66,0,0,72,66,108,0,0,72,66,0,0,200,66,99,109,0,0,72,66,0,0,0,0,108,0,0,72,66,0,0,72,66,108,0,0,200,66,0,0,72,66,108,0,0,200,66,0,0,0,0,99,101,0,0
      
      Triangle
      110,109,0,0,0,0,0,0,72,66,108,0,0,72,66,0,0,0,0,108,0,0,200,66,0,0,72,66,108,0,0,22,67,0,0,200,66,108,0,0,72,67,0,0,72,66,101,0,0
      
      Random
      110,109,0,0,0,0,0,0,72,66,108,0,0,160,65,0,0,72,66,108,0,0,160,65,0,0,240,65,108,0,0,32,66,0,0,240,65,108,0,0,32,66,0,0,160,66,108,0,0,112,66,0,0,160,66,108,0,0,112,66,0,0,160,65,108,0,0,160,66,0,0,160,65,108,0,0,160,66,0,0,112,66,108,0,0,200,66,0,0,
      112,66,108,0,0,200,66,0,0,32,65,108,0,0,240,66,0,0,32,65,108,0,0,240,66,0,0,180,66,108,0,0,12,67,0,0,180,66,108,0,0,12,67,0,0,32,66,108,0,0,32,67,0,0,32,66,108,0,0,32,67,0,0,140,66,108,0,0,52,67,0,0,140,66,108,0,0,52,67,0,0,72,66,108,0,0,72,67,0,0,72,
      66,101,0,0
      

      They're SVG paths. So you can customize them within a panel :)

      posted in General Questions
      bendursoB
      bendurso
    • RE: scroll event for script panel mouse callback

      @oskarsh Another friendly bump.

      I want to use it to move panels down/up.

      posted in Feature Requests
      bendursoB
      bendurso
    • RE: Reference Multiple Convolution Nodes in ScriptNode

      @d-healey oh, I found the solution on this post: https://forum.hise.audio/topic/4355/changing-impulses-in-scriptnode/15

      posted in ScriptNode
      bendursoB
      bendurso
    • RE: Zak Sounds Particles animation

      @d-healey It works on mine, and it's a M2. I didn't receive any complaints either.

      posted in General Questions
      bendursoB
      bendurso
    • RE: Compiling macOS Components and VST3 Doesn't Put Them in the Project Folder

      @d-healey said in Compiling macOS Components and VST3 Doesn't Put Them in the Project Folder:

      In a recent commit of HISE Christoph removed the copy step so it should no longer be moving the plugin files automatically (although this might only apply on the latest MacOS version I'm not sure).

      I can confirm. I'm using Sonoma 14.3.1, and the compiled plugins are now located inside the project folder. That was a good surprise :)

      posted in General Questions
      bendursoB
      bendurso
    • RE: Parametric eq is not saved in Presets?

      @ThinkTank You have to add this:

      const var ParametriqEQ1 = Synth.getEffect("Parametriq EQ1");
      Engine.addModuleStateToUserPreset("Parametriq EQ1");
      

      (Replace ParametriqEQ1 with your real EQ name)

      posted in General Questions
      bendursoB
      bendurso
    • RE: Joining two projects?

      @alfaholic This is how to copy/paste components: https://forum.hise.audio/topic/4408/copy-paste-component-following-feature-requests-thread?_=1696542841615

      posted in General Questions
      bendursoB
      bendurso
    • RE: Wavetable convertion?

      @bendurso I just realized that setting the Source Length to the same sample length (2048, I was using Automatic mode before) and enabling FLAC compression does the trick to obtain the same file as the example.

      posted in General Questions
      bendursoB
      bendurso
    • RE: New Website

      Beautiful page. I think the commercial license prices and FAQ are very useful for new potential users who want to use Hise :)

      posted in General Questions
      bendursoB
      bendurso

    Latest posts made by bendurso

    • RE: Using a finished project as a template

      @pcs800 said in Using a finished project as a template:

      I finished my first plugin and want to build two more that are nearly the same, just different images and samples.

      You might want to consider using expansions in the future. I recently decided to use them because many of my instruments shared a similar GUI, and it made more sense to use the expansions system

      posted in General Questions
      bendursoB
      bendurso
    • RE: Is there any method to encrypt many Impulse Responses for convolution reverb?

      @Sawatakashi You also need to disable "Embed Audio Files" in your project settings. This way, the audio files won’t be compiled into the plugin, and you can ship the AudioResources.dat file separately, as David mentioned 😊

      Screenshot 2025-05-07 at 11.10.04 AM.png

      posted in General Questions
      bendursoB
      bendurso
    • RE: Plugin Crashing DAW when quitting (Hardcoded FX, Preset System)

      @oskarsh Did you realize if that was the problem? I'm starting to think that my plugin crashes when using Engine.addToModuleState() with slot fxs.

      posted in Bug Reports
      bendursoB
      bendurso
    • RE: Hise pricing

      @pcs800 Check this: https://hise.dev/hise_license_preview.pdf

      Also the licensee is not the developer that is using the HISE framework to create the product, but the company that sells and distributes the product.

      posted in General Questions
      bendursoB
      bendurso
    • RE: Can't remove Child Modules

      @HISEnberg I hadn't thought of that—thanks for the idea. I actually used the saturator as an example, but I'm using a chain of dynamic effects, including the saturator and phaser, both of which have modulation. Still, I could definitely redo them using Faust or the built-in functions of Scriptnode. Thank you :)

      posted in General Questions
      bendursoB
      bendurso
    • RE: Can't remove Child Modules

      @HISEnberg I was checking your solved post https://forum.hise.audio/topic/9825/add-module-state-to-user-preset-help

      Does "RemovedChildElements" still works for you?

      posted in General Questions
      bendursoB
      bendurso
    • RE: Can't remove Child Modules

      @d-healey Ok, thanks for confirming. @Christoph-Hart is it a bug or we're doing something wrong?

      posted in General Questions
      bendursoB
      bendurso
    • RE: Saving and accessing presets

      @pcs800
      Also, make sure to tick 'Embed User Presets' in the settings. This ensures that when you ship the plugin, it includes the presets and automatically extracts them to the user's presets folder.

      Screenshot 2025-05-05 at 2.37.58 PM.png

      posted in General Questions
      bendursoB
      bendurso
    • RE: Can't remove Child Modules

      @d-healey Here I made a simple example:

      HiseSnippet 843.3oc2Vs0aSCCE1tqFXc.BjPBdLpOsgllR1M5fG.1ZGTAcqZYbQBglbcNc0ZI1UINCpP6+L+C.6jrljstwVkFHQdnpmKe1e9bytanjAQQxPDt19iFBH7cItiDpAaMfxEn1MQ36S5PiTPnUppMGMjFEAdHLdl2XTfmsJJ46mubSpOUvfbUHzGkbF7dd.Wkqs6qdG22eapGrOOnf2q9p1LoXKouLVymYH1ngT1QzCgcnF2pPPukFM.geJom2x1dNqyZ33r7Zq0vtWiUXazak9zUVEn81vtgCci05auJBeqVdbkLzUQUPjdQ2T5Mxcf7ahzM3i7HdOevH3fb06bpZzVC39dcOM3DgP3pcyCUyjFpdDoC2iOVedH6AIFrxQTLngqTlRUKQImKhRaK88LKvEPObA5UMkdOj3xB4CU4VLbaNRagNa1mpySEoUpunJ6iIaI0dHTKEPOB1NTKLFw7qaaunk9mEdQsZsDGxEvRTOuNRuXeH4.su7CQPX2PHBTy+iZVE9p2tY8maUuU+9.SY45KUNG3RUwgTczn9hk8cOHPdL3kbPa4CAZ9DoQ+k5I6kAQR3t9WGC6jEdQ+XASwkBKoXGoB1UL+B09QsYqcRMqyZpe+IZybzCk99P3DMapWCuLfyKhC5AgKZcL0OFF6nNmTNoeqqVRmklIJ3nTzVvU6NDxjyKKblPYAJKUp+2GZ2jpnlJkLcZ+FBgJtgN3lvw59zz5lYIMgniTxg5N0yUToKsKk.xp2MSBxLniGkJrLEOhHtZTwIEWil.6I1DLwS6UjtOjzkqXClLeqLA9piZ2z7Majx8HosG4jsJY6O+Wd9QFWtCwzip28zaAJ12VlPybYyXctFyXKRhamRh4HiGQjvimPl77ixyxR0ZxrExgeBTuNPFKTEKD0SpJeKlNqHiTmU2MyY7xJReLI+TX8uu0ZOYrhKNrCUEx+NBS1INvUeMMCzLVH.e8FQvULSbRksMxFB4BBuDgeo+xL5XjwYFcN03+M6Q.kEJOfkdifImemDM5XqH4gLypeQkV1xAkbKQw5r.86FNfwJuTmC3xSKvUlVfqNs.WaZAt9zB7YSKvF+Yflm085XkLHsWDg5zsUx0pXbKAU2UkzVh9sSMpQa
      

      (I also tried changing "ModulatorChain" with "Modulator", "Saturation Modulation", or "ChildProcessors"). And still the same error.

      posted in General Questions
      bendursoB
      bendurso
    • RE: Can't remove Child Modules

      @ulrik said in Can't remove Child Modules:

      Ok, I see the problem, I don't know how to do that, sorry

      No problem. thanks anyway :)

      @d-healey said in Can't remove Child Modules:

      You have to delete the child processor from the chain in the module tree.

      Oh, but it doesn't actually have any custom child processors.

      This is the complete XML of the processor:

                  <Processor Type="SlotFX" ID="Effect Slot1" Bypassed="0">
                    <ChildProcessors>
                      <Processor Type="Saturator" ID="Effect Slot1_Saturator" Bypassed="0" Saturation="0.0"
                                 WetAmount="1.0" PreGain="0.0" PostGain="0.0">
                        <ChildProcessors>
                          <Processor Type="ModulatorChain" ID="Saturation Modulation" Bypassed="0"
                                     Intensity="1.0">
                            <ChildProcessors/>
                          </Processor>
                        </ChildProcessors>
                        <RoutingMatrix NumSourceChannels="2" Channel0="0" Send0="-1" Channel1="1" Send1="-1"/>
                      </Processor>
      

      And I'm trying to save Effect Slot1_Saturator, which only contains the built in modulator.

      <ChildProcessors>
      <Processor Type="ModulatorChain" ID="Saturation Modulation" Bypassed="0" 
      Intensity="1.0">
       <ChildProcessors/>
      
      posted in General Questions
      bendursoB
      bendurso