• ALIAS PLUG IN

    2
    0 Votes
    2 Posts
    293 Views
    W

    dont worry, I found the solution, just right click on the alias version and click on " show original:

  • Automatically fit standalone app / plugin within desktop screen?

    3
    0 Votes
    3 Posts
    476 Views
    gorangroovesG

    @ustk Thanks. So, this would be something for @Christoph-Hart to implement at some point if he deems it worthwhile? 😁

  • The path to juice is incorrect

    12
    0 Votes
    12 Posts
    1k Views
    W

    im a person that like to try stuff even if it dosnt make sense, so went to HISE program and create a new project and did some tweaking after various attempts and it export , It opened perfect and worked on MY ABLETON DAW, so I dont know how, but it did, thanx,

  • Morph between tables

    4
    0 Votes
    4 Posts
    490 Views
    David HealeyD

    @oskarsh said in Morph between tables:

    I have the UI table where I cannot edit the points via script

    e98bd092-a470-4adc-82cc-b884de85ca64-image.png

  • Midi velocity limit, compression, expansion

    3
    0 Votes
    3 Posts
    450 Views
    A

    @d-healey Thanks David. πŸ‘

  • Updating plugins

    5
    0 Votes
    5 Posts
    565 Views
    P

    @Dan-Korneff Understood, thanks for the info! :)

  • This topic is deleted!

    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • SampleMaps loading time

    7
    0 Votes
    7 Posts
    877 Views
    A

    @d-healey

    Thanks David, this is actually my solution to this problem, I will have two sets 8+8 of VSTs loaded, so the first 8 will play the active style while the other 8 will be in stand by mode waiting for the next style to play instantly.
    The same with the real time tracks played with the right hand, there will be 4+4 VSTs, first 4 active and another 4 waiting for a patch to change, so you can still hold the key and hear the active patch, for example Saxophone, while calling up the next patch, so after you let go the key the first 4 VSTs go offline and the second group plays further without any interruption.
    I hope this translates well enough in English.

    @Christoph-Hart

    Thanks Christoph, this is very useful.

    @Lindon

    I use RR in my presets to add realism , but I do not see how I could use it to load all GM library this way, every patch uses different set of filters, envelopes, and other settings. but it sounds very interesting as a workaround. Am I missing something?

  • Universal Sample Player....

    34
    1 Votes
    34 Posts
    2k Views
    LindonL

    @aaronventure said in Universal Sample Player....:

    @Lindon said in Universal Sample Player....:

    so this can be an in -plugin download or a download manager download, or an installer download, but basically it says on the Button:
    Download all the files I need now

    the user presses this and the downloads are attempted.

    This would be great. So the files are hosted on a server, the plugin downloads these, sets them all up automatically. I think this requires disabling the internal check for samples, didn't you (or someone) ask about it the other day?

    If so, there should be a definitive guide on something like this. I guess Amazon S3 and Backblaze are what most people use these days (with Backblaze being around 10x cheaper).

    definative guide for HISE developers -? sure.

  • Build my plugins on a new Windows machine

    2
    0 Votes
    2 Posts
    326 Views
  • trying to export fail

    4
    0 Votes
    4 Posts
    430 Views
  • addEffect to a Synth through scripting

    13
    0 Votes
    13 Posts
    613 Views
    Dan KorneffD

    @Christoph-Hart This is sick! Building redundant processes is a breeze now.

    // This class is a helper tool to programmatically build up the module tree const var b = Synth.createBuilder(); inline function createDrumSampler(samplerName, samplerNumber) { local sampler = b.create("StreamingSampler", samplerName + "_" + samplerNumber, 0, b.ChainIndexes.Direct); local directGain = b.create("SimpleGain", samplerName + "_" + samplerNumber + "_Direct", sampler, b.ChainIndexes.FX); local monoGain = b.create("SimpleGain", samplerName + "_" + samplerNumber + "_Mono", sampler, b.ChainIndexes.FX); local ohGain = b.create("SimpleGain", samplerName + "_" + samplerNumber + "_OH", sampler, b.ChainIndexes.FX); local roomGain = b.create("SimpleGain", samplerName + "_" + samplerNumber + "_Room", sampler, b.ChainIndexes.FX); return { sampler: sampler, directGain: directGain, monoGain: monoGain, ohGain: ohGain, roomGain: roomGain }; } // Usage example: const var kick1 = createDrumSampler("Kick", 1); const var kick2 = createDrumSampler("Kick", 2); const var snare = createDrumSampler("Snare", 1); const var tom1 = createDrumSampler("Tom", 1); const var tom2 = createDrumSampler("Tom", 2); const var tom3 = createDrumSampler("Tom", 3); const var floor1 = createDrumSampler("Floor", 1); const var floor2 = createDrumSampler("Floor", 2); // This needs to be called at the end so it sends a rebuild message to the UI b.flush();
  • Velocity response

    2
    0 Votes
    2 Posts
    247 Views
    David HealeyD

    @Sampletekk Add a velocity modulator to the sampler's gain.

  • Anyone making their own Lottie files?

    6
    0 Votes
    6 Posts
    307 Views
    David HealeyD

    @paper_lung Search the forum, you will find the subject has been brought up before. Generally the simpler the lottie the more likely it is to work.

  • RSA.xml ServerKey

    3
    0 Votes
    3 Posts
    266 Views
    ustkU

    @Christoph-Hart Oh yes I see... They are just the DEC representation:

    BigInteger b1, b2; b1.parseString(numbers[0], 16); b2.parseString(numbers[1], 16); auto n1 = b1.toString(10); auto n2 = b2.toString(10); xml->addChildElement(new XmlElement("ServerKey1")); xml->addChildElement(new XmlElement("ServerKey2"));
  • hmac-sha256 ??

    5
    0 Votes
    5 Posts
    242 Views
    LindonL

    @d-healey said in hmac-sha256 ??:

    @Christoph-Hart I see JUCE has a SHA256 class, is it possible to add this as an option for the encryption system, perhaps with a pre-processor definition to choose between it and blowfish?

    and base64 please!!!

    πŸ˜‰

  • Exporting VST.64 & VST.32

    3
    0 Votes
    3 Posts
    456 Views
    orangeO

    @ALBERTODELRIO 32-bit support deprecated in HISE for both Windows and macOS versions. Because you won’t need 32-bit versions anymore.

    Frankly speaking, I have not distributed 32-bit versions for 2 years and no users have requested 32-bit versions.

    You’ll also need a VST3 License - You can get from Steinberg for free. (If you didn't get the VST2 license for your brand before November 2018, you can't sell / distribute VST2 (.dll) plugins. Steinberg dropped VST2 Licenses since that date. But you can get VST3 License now)

  • Export error

    10
    0 Votes
    10 Posts
    2k Views
    S

    @Sampletekk said in Export error:

    @d-healey said in Export error:

    @Sampletekk That's probably the issue. Some recent threads on the forum indicate that the latest version doesn't work.

    Ok, I'll downgrade. Any ideas on what version will work?

    Downgraded to XCode 14.3.1, all worked!

  • AHDSR Module - Edit Release time?

    2
    0 Votes
    2 Posts
    167 Views
    LindonL

    @paper_lung probably because its not linear

  • LAF draw table vertical line

    6
    0 Votes
    6 Posts
    520 Views
    gorangroovesG

    @d-healey Awesome. Thank you very much! That will help me greatly.

23

Online

2.2k

Users

13.3k

Topics

116.1k

Posts