• Coming over from Kontakt? Read this!

    Pinned
    8
    1 Votes
    8 Posts
    9k Views
    LindonL

    @d-healey said in Coming over from Kontakt? Read this!:

    @Lindon They live inside Kontakt's sample map too, it's just that with Kontakt there is only one sample map and it's part of the NKI.

    I think the main different between Kontakt's groups and HISE's is that with Kontakt you can route them individually and apply effects and other processing to them individually which you can't do in HISE (yet...?).

    In HISE the routing and modulation is at the sampler level rather than the group level.

    Absoloutely - valuable stuff to include - I guess I was thinking inside a group you see a mapping of sample audio files, inside a Sample Map you see....so (to start with) same same...as a starting point. But hey no problem.

  • Custom IR Samples within the combo box

    2
    0 Votes
    2 Posts
    38 Views
    David HealeyD

    @resonant said in Custom IR Samples within the combo box:

    How to save the selected file into the preset and remind to the DAW Project?

    This one I'm not sure about.

    @resonant said in Custom IR Samples within the combo box:

    How to list only file name without whole file path?

    The options for toString are listed here

    inline function updateComboBoxItems() { local items = []; for (x in factoryIRs) items.push(x); items.push(customItemText); for (x in customIRFiles) items.push(x.toString(x.Filename)); cmbIR.set("items", items.join("\n")); }

    @resonant said in Custom IR Samples within the combo box:

    I made .wav but How to add .aiff files too, within the wildcard?

    Comma separate

    var files = FileSystem.findFiles(dir, "*.wav,*.aiff", true);

    @resonant said in Custom IR Samples within the combo box:

    How to include subfolders?

    You already are, the last parameter in the findFiles function controls it.

    In general, use inline functions instead of functions and local instead of var within them whenever you can.

  • Scriptnode is fun!

    30
    6 Votes
    30 Posts
    5k Views
    LillieL

    @Dan-Korneff At some point everybody wanders from the slots into the live section and finds a completely different animal there, so it's worth understanding the difference before you sit down at a table. A slot moves at whatever speed you press the button, which means you control the pace entirely, while a live table moves at the dealer's pace and that pace is slower, more sociable and much harder to leave. In pure numbers the tables are usually kinder. Blackjack played sensibly and European roulette both carry a smaller house edge than a typical reel game, which is the part people quote when they argue that live beats slots. What that argument leaves out is the rest of the picture: table minimums are higher, a round takes a minute rather than three seconds, and the game show formats like Crazy Time or Lightning Roulette are built to feel generous while sitting at the aggressive end of the range. There's also a very Nigerian consideration that nobody mentions, which is data. A live table is a video stream running continuously, so an hour at the tables costs you far more of your bundle than an hour on reels, and on a metered connection that difference is real money on top of what you're staking. So a reasonable order is this: learn the maths on slots where a session is cheap to observe, then visit the live rooms once you know how you behave under a losing run. Most people compare online slots in Nigeria and live tables as if they were the same product, and they aren't. As always, test before you spend. Every online slot Nigeria players recommend has a practice mode and on 1xcasino-ng.com Nigeria it opens without a deposit, though live tables are the exception, since a real dealer means real stakes and there is no demo version to hide behind. The setup around all of it stays simple. 1xCasino sign up is an email address or a phone number with your currency set to NGN, roughly two minutes of typing, deposits run through bank transfer, USSD or mobile money, and withdrawals return by the same route into the same account, so keep it in your own name and get verification out of the way early. One habit worth building if you do move to the tables: decide your stop before you sit, not while you're sitting. The social feel of a live room, the dealer greeting you by name, the other players in the chat, all of it is designed to keep you in the seat, and it works.

  • 4 Votes
    19 Posts
    4k Views
    soundsyncS

    @dannytaurus Great idea. I'll add this to the HISE/JUCE package updates.

    Thanks!

  • Customer support software

    15
    0 Votes
    15 Posts
    178 Views
    dannytaurusD

    @soundsync Thanks for the info πŸ˜€

  • 6 Votes
    28 Posts
    824 Views
    ChazroxC

    @robJ Thank You πŸ™

  • Is there a problem with HR1?

    17
    0 Votes
    17 Posts
    72 Views
    GUJIANG

    "OK, that's it. Thank you."

  • Hise Crashing

    40
    0 Votes
    40 Posts
    279 Views
    David HealeyD

    @LucaL check what's in that array, I don't know without seeing the rest of your project

  • Switchable Mono/Poly Envelope Modulator

    1
    0 Votes
    1 Posts
    45 Views
    No one has replied
  • My new creation, my first artwork

    1
    4 Votes
    1 Posts
    68 Views
    No one has replied
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    36 Views
    No one has replied
  • Auto Start REST server not working

    4
    0 Votes
    4 Posts
    88 Views
    Christoph HartC

    @ustk Haha I am launching HISE with the cli most of the time and there it worked so I never bothered…

    hise-cli -hise launch

  • HELP! I modeled a Roland D-50 in HISE/Faust, but...

    5
    0 Votes
    5 Posts
    179 Views
    griffinboyG

    @Morphoice
    Ah, no but that is a reason to reset everything!
    Under many conditions, changing parameter values all at once can produce monstruous audio. Like, if the DSP effect has feedback, if you don't clear all the buffers, the audio from before the switch, could blow up under the new parameters. There are scenarios that can sound really horrible or blow out your speakers. I mean, let's say the new preset has different reverb parameters, you'll get all the reverb knobs yanked while it's still playing, and get all that washy doppler... Of course that's not a horrible situation, but you can imagine that certain DSP would produce really loud nightmares. Which is why it's quite sane for Hise to send reset() on a preset change, to clear out all the buffers and start from silence. It's the safest thing to do.

    But I agree that creatively, there are situations where this is not what you want. But you can understand why Hise went with the blanket solution.

  • VST/plugin GUI design + launch graphics β€” ads, motion, web

    31
    6 Votes
    31 Posts
    5k Views
    ChazroxC

    @ustk The man is too good! πŸ”₯ @lalalandsynth πŸ†

  • New to HISE for specific purposes, i have lot of things to ask.

    26
    0 Votes
    26 Posts
    958 Views
    David HealeyD

    @aliabr_prod You can see all the latest developments here

    Make a bug report at github and link back to this thread so it doesn't get lost.

  • Measuring plugin delay times....

    12
    0 Votes
    12 Posts
    323 Views
    LindonL

    @ustk thanks mate I will give it a go...I have no idea how to do a "correlation algorithm" but its all an adventure...

  • Why is macOS minimum 11.0? (And beware of Xcode 27!)

    13
    0 Votes
    13 Posts
    201 Views
    David HealeyD

    @dannytaurus Interesting, looks like they are also phasing out Intel support when they eventually limit the minimum deployment to 27.0 - probably a few years yet.

    I'll just stick with my existing build system for now until it no longer works.

  • IPP Mismatch on Windows

    6
    0 Votes
    6 Posts
    356 Views
    David HealeyD

    @eschirle I don't know, I haven't used the ci method

  • 0 Votes
    2 Posts
    96 Views
    E

    For anyone curious - it looks like you can get around this by linking the expected path to wherever you have Visual Studio installed

    mklink /D "C:\Program Files\Microsoft Visual Studio\18\Community" "C:\Program Files\Microsoft Visual Studio\18\Enterprise"
  • Latency issues..

    5
    0 Votes
    5 Posts
    1k Views
    J

    @Jeetender said in Latency issues..:

    @Jeetender said in Latency issues..:

    I made a vst everything works fine, but when i open that vst into any daw like flstudio/live/reaper/reason it gives out latency.. how do i compensate the latency automatically?

    i did try this.. but nothing worked, BUT i had a dynamic module in the end of the chain, which had a limiter, i removed it and then the latency was gone after compiling the vst..

    can u please elaborate, coz iam not much of a DSP coding guy. but i had tha plugin at the end of the chain which already was of no use.. and i dont know why doesn't it report the latency to the DAW automtically, the other plugin ive made do this well and good, no latency with other plugins.. but i am here to learn more about this.

10

Online

2.5k

Users

13.9k

Topics

121.3k

Posts