• trying to export fail

    4
    0 Votes
    4 Posts
    305 Views
    d.healeyD

  • addEffect to a Synth through scripting

    13
    0 Votes
    13 Posts
    422 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
    194 Views
    d.healeyD

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

  • Anyone making their own Lottie files?

    6
    0 Votes
    6 Posts
    181 Views
    d.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
    210 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
    154 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!!!

    :winking_face:

  • Exporting VST.64 & VST.32

    3
    0 Votes
    3 Posts
    310 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
    478 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
    111 Views
    LindonL

    @paper_lung probably because its not linear

  • LAF draw table vertical line

    6
    0 Votes
    6 Posts
    291 Views
    gorangroovesG

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

  • Forget sampling!

    29
    7 Votes
    29 Posts
    3k Views
    orangeO

    @virtuscapeaudio said in Forget sampling!:

    Do you guys think that this will indeed get rid of us all? Or is there still a way to stand out and maintain sales? I can't tell if these comments are sarcasm or everyone is indeed worried about the sampling business at large.

    Yes, old technologies may not have changed much. But the story of artificial intelligence is much more than this. With today's computers, a person's ability to complete a task that would take months or even years in a very short time, using another previously trained software with its own intelligence, is a unique situation in human history.

    To be frank, it would be wrong to be too optimistic. In my opinion, within 10 years at most, at least more than half of the work (business) currently done by humans with computers will be destroyed by artificial intelligence. And unfortunately, software development comes first among the tasks related to computers.

    We are now witnessing the infancy of artificial intelligence. We will also see this technology stand up and start doing real work instead of people.

    There is no escape from this 😊

  • RNBO compilation errors on Windows

    11
    0 Votes
    11 Posts
    605 Views
    A

    Got this working, thank you everyone for your help! The fix was just updating Visual Studio past 2017. :)

  • Sine Wave in Table

    3
    0 Votes
    3 Posts
    107 Views
    DanHD

    @d-healey 1) I'm making an LFO in scriptnode and want to see if it's possible 2) Yes, but my math's probably isn't good enough 😆

  • This topic is deleted!

    5
    0 Votes
    5 Posts
    5 Views
  • UNIX date/time into HISE.....

    7
    0 Votes
    7 Posts
    215 Views
    Christoph HartC

    @ustk yupp that was the case, now it should pop up (in the new_dispatcher branch)

  • Draggable window resize?

    3
    0 Votes
    3 Posts
    182 Views
    P

    @d-healey Ah brilliant, thanks, I'll check that out. I'll look forward to your patreon video as well! :)

  • Console.stop

    9
    0 Votes
    9 Posts
    369 Views
    R

    @Lindon said in Console.stop:

    @rzrsharpeprod perhaps start here:

    Link Preview Image misceffects - Faust Libraries

    favicon

    (faustlibraries.grame.fr)

    Ah I've been putting off installing Faust as I'm not really sure where to start with it and what I need.

    That being said, it is becoming more and more apparent that it is going to be very useful if I do.

  • Ring mod - any info?

    1
    0 Votes
    1 Posts
    83 Views
    No one has replied
  • Unzipping in the plugin crashing the browser

    46
    0 Votes
    46 Posts
    2k Views
    LindonL

    @Christoph-Hart frankly - you are the man.

    Okay I will go build this and with luck ship it then move to the image you asked me to look at - I will give you a shout just before in case I'm "too late to the party"....

  • Saving

    3
    0 Votes
    3 Posts
    190 Views
    S

    @d-healey Thanks!

20

Online

1.7k

Users

11.8k

Topics

102.5k

Posts