Drag n Drop samples into Sampler 2025?
-
I'm looking for a way for an optional feature to drag and drop samples into a sampler, I've tried this but i'm having a hard time making it for 4 samplers. is there an updated way of doing this?
-
@Gab Are you using 4 samplers because you want to allow the user to add a multitude of their own samples? If so then the AudioLoopPlayer might be the way to go. But if you want to use samplers and have them mapped to a specific set of keys, so they don't interrupt one another you can add a script processor to each sampler and in the onNoteOn add something like this
{
local note = Message.getNoteNumber();if (note < 20 || note > 60) Message.ignoreEvent(true); }
-
@rglides it's a bit of a weird rig but basically there's 4 samplers that cycles different samples like a round robin would but I want the users to be able to put they're own samples into it if they wish.
I thought about using the AudioLoopPlayer but didn't explore the possibilties but will it replace whats in the sampler1?
-
@Gab Ah no I don't think AudioloopPlayer does round robins. I'm not too clued up on rr yet. Hopefully someone here has a good answer for you
-
@rglides Hopefully, thanks for the suggestion!