@iamlamprey Nice work!

Posts
-
RE: MIDIPlayer || Need Note Events .
@Chazrox try this
for (e in messageList) Console.print(e.dump());
-
RE: Is it possible to link parameters between plugins?
@Bicrome I made an attempt long ago, had several "client plugins" listening to the main plugin, It worked using osc.
I stopped working on it but I don't remember why.Here I wrote about it:
https://forum.hise.audio/topic/6612/possible-to-communicate-between-plugins/24?page=2 -
RE: How can I link a pitch parameter to a knob?
@lijas90 set the slider min -1.0 and max 1.0 and stepSize to 0.01, the connection you've made is correct
If you want the slider to go from -12 to 12 you have to script it like this:
inline function onPitchAmountControl(component, value) { AHDSREnvelope1.setIntensity(value/12); } Content.getComponent("PitchAmount").setControlCallback(onPitchAmountControl);
-
Stretch player questions
Is it possible to make the stretch player to play oneshot (disable looping)?
Is it possible to make it compile so we could use it in a Hardcoded slot? -
RE: How to use KeySwitch to trigger sampling?
@CatABC I guess that's how the eventData Envelopes work, if you trigger a key switch the fade will not be applied until you play next key
It seems to work flawlessly when playing legato but as soon as you release a playing key, and the fade has not worked its way through, it will continue the fade as soon as you start playing a key again.
It would be nice if the smoothing time will elapse even if no playing key is pressed -
get playback position from waveform component
It would be nice to have a "displayCallback" for the waveform component.
To be able to get the playback position when it's connected to a sampler. -
RE: How to use KeySwitch to trigger sampling?
@CatABC I fiddled some more, this is a better solution, using eventData envelopes, it's easier to set the smoothing in the fades
And I don't think it will consume much cpu, it's only the extra voices
HiseSnippet 2368.3oc6a0uaajaDeW6r4hT9n45kC28mDF8Oj6YnSe4OTSSshskuXj3OpkSRKBRSo2kRhvqHWrjxItAAsnuH8UIOB8QnOB4MncH4tRbkj84X3fbNUBAQZGx4CNyvY9MRI6Ey8IBAO1wM+AmDQbbukWqSXxtq2ESYNasgi6238XxIhWSk9cQswADAphyZmDgEBRfiq6r+jZit4tli90GVcMbHl4SFRxw4YbpO4IzdT4Pp603wzvvMAAd.sm0tq0XKeNacdHuOXTy5UxIB6eDtCYGrZay347Hrnqi6u0awJU8qErbPkJKVeIe7Rj5swsaWtZPsZKsR8xUqiqsxRjRK53d8lATIOtkDKIBG2qsFO3jVc4ulYTvynB5ggD0CkcZAZ1PdSdXf5Hpn5rdWZXvdodKgiiq2dC8cyZ7c2yaaZ.c.8g9v6pW.MjCaGn6LYMuYyXdksMuRVl2DLIWKS5ZFS5q8Z4GSijCWQYO2zaKljD2FCwIaSwrWG226sNG1.SVrG9HxlwvCCXnvRkJs.pRoRye+18Y9RJmg3rc3RxtrBym+s4yk+c4QitT61SbMkZh4ggj3ItrJ0H9rXr.qeuCIwKfNFG1mLXivwOqO06z8o1gbeyo1Zib1VLpb2HB6zRDbRbUJ+ehUAaUp892Iw62JjFPhcnfSNu2fbdsMOHyuweugyS2ZCrDmJIPnfhhHwRp5L3tA4X3djItlyaCh3HIOBz057dQblxDbyaz6sSz6SvGRB0p8N1TJ67F6qmmX+vqoAxtCH79+YitDZmtVWb+yMjj2.Oui2lObiln0Zdvya1bGTUTqce5Nan968WuYKzY9pufx5ff5JnV5BKvwqMbfaQ+aVUB9CM50OTRCorj3DABo3A2DbrN12Rlb+ybH2LjikfFNfBaVc5+1Irvo5DZ7Wa7y4D9G+wFIAHSzHupF4gbbbfygcRqccKuZUVo1xKUu5JkbnRRuzEtoWsEqTekZqTsrE8JFNpWq9RKWo9hNJurcYPclwLuz06s4Qn4.88bkQN2uCUtVwRKnnsAUDEhOYWeI9XxN5KFvxswgBhd8mveMvFPpt9wGQMOUtxx5mWuuPx68Sw3ntTeQFN2fzFCwhGFEQvwpp6vpx39lEWKDJPChZev0xgEJUbo55WqrRokqWZ4x5cc.uSmPx17.RFIqpKB0IYLRnxTzzdpf7LhOb60xVFnMXwMCwxVxSBGQR60LMHLJcnJPrbnVpjRuIKvR2Kk+cYRpt844N7ojCAIHYygb9KicQZqF8.uAzcxSKod3gxpw+pgPRhxde3CqJ52tME1kmGpmvoGMHHjrGWPU0DsufFkVdZq.UumV79r.AjH4SPOtEzOMFZkBUyUq9q7Z0iykc0WJ.qvY7VHPyKdPevmmsilpuexBJ0a2FQ0qfAl0I1F+kVatyqI90d6opsLYablIXiPc2OE1XB3fa60rcaHsdnAdMuM+SeZPBXq9abJ359dSdQKcdg.opmAKQhuL.2EctA24N6mBrYe0UXrYicecB.zl43q68i+XNxwPgJT.zX.0KM+WjG7vBIp4FMeBEd+AHcbuXGhbq.EkBy0TwlpcBpI6XRHfvXt4u+P1D.Ou3k2Oe917XTABhxRE174UKWLpunagARcvMuBj4AwjGrKQZIEjDB+nCIxWSHLjrKwLAQhtxT4ATZJlSbPviY7CKLWlML2BH.2YIkJxPunfH2Gy5PJTpnAXp98xEUacrcVXNSQTPZyAEQUG77TlBigM5xLrkB0zOs0fMZSsORj3iDymOWNgRMOTJioG1WRJHJlQXo7de.l53VWhpVGGFdHzTsvjsDkMqbyGkNWFQrfw4RiA2JUfvvA4XBBKQBUqub4xAftxGS5fNREce6bJVgddun1JKfVD7VKV4kfCwvlhttcaRSTyau7clXaDbuQp0FHJkXLpNQift6hA8iBHD.3JxWeUeLOrVHpwJKLzIRACqz8QTzuGjbQkjKFRXcjcAZ+vOn7rMYc.on7S.qlhHER15Knf8aHIJB9jtOLLpKtPJkXRvBJoZrRXynUAXJKiTfUpNuIXXYSlS5Cx9BA5M8XNxROXrCnJEPu0BTV.4Mm1ozHtQOmYLzGfzR.TIvzpZbPnD3MfYlKiUmSc6JofdAyoZTCKyNljUougOpiGnA1R1D6ThIXCelJsdLmbYkK1XIiXamxrigbebHhw.CZanlHL2upFiZGF.s5iY9bP3AR68OBQaihhIpxipjQctu9CIegEvgiwk4yAaKMUonuoSmn.iMOb5.klKUUzNLdLQWerfxSqTVhIobQoRPGQ1ssR.pM.+IQ9CN5yqrPaaSnMsvXBN3jjrnEPwDY+XFvdNymRDFAhsJhVIQJ87toyUeFyUOJP1KogqmwZf.urCWuGlkLb8M8hXguR0qK9Llr9XarB1CZ7Um6CkB6uahfMeXzoFxLgvjlgXJ.+uz.3+cF0eSumCi8qgkoU9crw2W9LP0+uu7Q0a9JHNHFyDQbAncKI2hzid.j4KxPcDNpLQNxPcCnjIyVz268FRV65dMT9jM4w8r12MFPrhMQ35bFKBdNi91lZc09+rZSl5qhpEAN4A6J7AGiJ4z99vd8g535ujlx1LNjbEaxOBGG.AO+LYqm4vQkufCGc8ewMbzUfZRtyXYi4RswVzdQgjzonz13u1KAPTJ0rW81ly3Qc4LZl.89D.UUmNjL4OS7.A3ufACryv2mDRvBqqi+lFOAf7gi2V+sKcg7Ek+nmkchwqu2yXtH8.de16kjD19FuAC.mIx8sdiOX7EL343LwSUqPtbKE1wr0wFheNSUuLc9s.xboEGuT5yN6+2zm8rqLAsGP+hFsz24AsopfzgRzmmX4979pe8kswvEFEHUXjNC7jjuEd0.Etynf9adtTJJ2VDVf9g+K7JYwxpmcSVrb5her.ipLEXz.h2cR.it6TfQSAF8IAXTko.it5BLpxTfQSAFMEXzWt.ipd0EXDTO47ALJkTlcMAfQeX0I.LBvwLEXzTfQeB.FUcJvnqt.ip94BXDr4o.ilBLZJvnOVfQeonidX+X9q7M+T4pht2PSA7sL8+0Ix4ss5YT4Q9swU+JxPK6W46mUTiwXkKJiUunLV6hx3hWTFW5hx3xWTFW4mmQEhpG1Wx6Yt+AHK2qo9eKCttFPk5qhN+O.G6L2qA
-
RE: How to use KeySwitch to trigger sampling?
@CatABC if I understand you right, you want to fade between several sound sources.
This snippet will show you one way to do it, however keeping several sound sources activated will produce 3 voices when pressing just 1 key (one is sounding, the other 2 has a gain of -100dB)
I don't know if it will give you any problem doing that, I suppose it depends on how demanding you project is on the cpu?HiseSnippet 2419.3oc6a01aSjjDdljLrXytHX0dZWcepk08AmEiW+Rdc41EGRbfHHIdwA3PHDamYZa2Ji6dtYZmPNDRmteY7o6y2Og6mv9OfqptmwdlDmPHh2OGgbltppqt5ppt5mZhoUnzkEEICsryuygALK6u1o8gBUuU6Q4BqMVyx9pN2kcXzAbkaORGpGKx5VGFPihXdV11SeaTL6byXo+4Ot4sn9TgKaDIKqGJ4tr6w6yUin1pwc499qCpaGd+TROWiMbkhUk9xAfIMsSEq.p6dztrsnnXS4XcGZTOK6ezY9Z0cmyaQuZ0le4EboKvVtCsSmp08latEVZ4p0WlN2RKvpLuk8EZ5wUxv1JpBLd6Ytkz6v18jGHLKvC4Q7c8Y3fpVsgU1PdcouGtEQpVq1i660JwWEYYY6zZjmaZim66b1j6wGRejG7JZFjQyHsCzdprl2zYLupoMuJoLuwXR1oLoYLlzUcZ6FxCTi3f1ykb1PnXgcnPbJsoXj0x9UNqJAADpx8o6wVODFLbBEWnRkRjZUpL6M5LP3p3RAQJ1RpXaKJNa9WjOW9WlmbTVc5LVd3xDJ88YgikMlZDdZSrnXP+cYgkH6S8GvFJHr8y5ScNYeZ5PtqYWmRPoXCAWsc.SbRIBVwtJ3oGrwZTEECDwz.4BXgJNZB1qw1GNFXBK4bViEsmRF.YzqJ6GHEnFryqzb+l3f18n6x7s3Pn4xooT054oOccX5AGv8T8FR3U+qF8X7t8Rct6wMTrmCi2xY8UVqI4VM24QMatEoNo81OXq0vOu+pMaSN0eFDwEcIPQARacUAX60A1vs4+iTGj+0F8G3q39bAPzdJFDOnZWt8zVo1xesJ9niYCttujp.suCGDE24+owv3Dc.M98FuIGv+72ZDGbLQh7XwsckzPOqc6lT1I2E777dMJNWw5Oh5qe8q+yYoVKlrVXzyNR3DySmSL0SscdQdBo.rZOBMwB+Lo5bkqTBosFOJvmd31tJ59rszYz.6NT+Hll+8jG.SCHsrd3c3lQUqsnd7pChTx92NjFzi6FkYlqw5PgnvJAALZHVVF3pBGXXdKenxJnp6CNVIvnR4EVV+yRKUYwkqrXUsT6H610msozikQyXAMn.mPv7QSQS6AQrGxbgicorkgqFvbcepps5P+inoVMSBAGkNb7MTMZUpkPuovK0ZuP9WB2mbrRePQWo2.XIyVIFuuJlATJIS4OrFmHhqNL88YuyJOeVMwq5zBOTMdabpwXiPAm2G1X7kZeiSyNcfn5HCbFm0+auetAK8xewS.MxO3zVNP3AeDBhRvCy.KV36BPIAmYPI1S+9.SwW8YLlhqXhKQ53B4tsGGvho92ekC3HiTj.g+yT3s6jegjf0f540hBmoKVXH2BkH.XC.pQ9gjJGwTEKruYC.70EL.Ax+S+TNEbUDiPCYD3IhaB3BORWvqEk2rzXtQDrrOQmXUtKSYRvKVnMuefOSKP0ByVJetb4fa6NMwpc1DqdgYepwB2KAIMKpj1H6vCAahGQn.zl8AiWQhvpdFklOj0krGZsun.NUnb2SlaoRj4Aux70dZIRAyzP55Jsw0OM+5ouDVz7cjgjhbPEUtAgS9ql8eYelnqpGP4ZWSCah2gTbunxF08D9SmE1VZIgmQW9JJUHe2AJVwgTwGLAmbLX0NqS35UQri.LMzeD.jTZGArKwcnwqD6L.2ROJ3ZHdLF.jBhn3Iv7bAhpXDbPsRvdTLPEO5FF1VnlytkykqonKnEzTgoZNaWLVTvXKQLjhJCgqdq3GziVLgRHyqDIsyhbS3xyEI3Un0m0r2RYSCyMIlLdUOHHqajhrKSc.iIRumivSQDkTSS.HJxvH64.M93Uo996B2jWLweX7B6SCIBYXevOrIExL6DJ6WYGY0hpd7nxd.njxtfFUkfTq9bAjAgAFHipO84E9Y8CbOOeVKIbaCnUTfkdIFrGo.ucSzN.tnKqHpAx0HE0q6ORv.coX0pSSxGmgLRCRwXSVxJfIuoHnmqmdsm855tPFiR6z4MoUTBiZynQHToOIbDeD4W+ER0xUvrFMG.uUPbuI3LNpzWCR8JWCRChC8XrVWBZXJ6wRgQQzFYQvzJAM3nigixwPCF705i02HCCARGO6q8uiROR1m.W3yabbVBji33LL6A7zSZV5hRl8bcsSOSBNjvCEZFe6f9RWpOQfK2lv0EPq7XURTBCT2hlLCvOAUEc2i.9+fPFdyAVPPWZT+P7afPho0pgErzmrcMf.hJJDyBAIXQykrT7tPxHq49vELEQuDtXwlDVhHQCbgG64a2AU.J.7uiUPDsvz1Vj1z7CYTuCiOiVhDxTCBE3UBlmhUFVeDmO9airv8xwmvO.TENgQo.CW1glk1xKQ3nw8xI8W+1zescplMcx1esFsgtKyK4LLSG6szwNtuRyC6mraLCmzqwWZ8ZbYyxeIm1PQYMPN8he4zsZT8TZv3+7tuACyKCXG3d0n.YTFE2l0muCjQGklH1dcH6uq6kOM8Ug9pGKq+3lqCa1wNm1TnzkNcXk93kAYB+mZiOUOmM9LymbM97Yvg7L8lkKwFMsczTrOyGJNpswu0I98.kPMat7lRgLnmTvcSGnuOC.O0sKKLssO1MD.yBfeNhx2039LeFMcR6eow8fjMZH9ZjNm9hpu08oN130O3XLWBd.j74aw4o+ht3blv4n2DjN091IK+kcR2v9oTd1xZMlOMii5QYdMwVOtwXJfuAbZIT0R5SCOpad52UosyblyEvszm14qXYFvM+otQpC8eZajWwAfl9QxDuub.92YA5pOjiPgglzL.fhei6HZe6oPjElwURfE2lI7zCv+bHwLqhisiYVMg4Gj03sDdWsIv6z4QSf284O7tZSf2MAd2WVv6NsxyO9USf2MAd2D3c++J7tuOAd2i.HUm.7t5eTg2Ucr36xP8Hyn1XmQsr8zpFHxpZCoLRg9j0kg8SI2EajPrVZhPNYFkAiynoM4o9VW8euYSA904pMC14daG4BNFLIOcRaqA9QL8wwpom3Hx0RS9NzPOH3499+kMdgInQ+PhFs9DznSPi9kEZz5SPiNAM5DznedfF8L6F..NeZGo9dG.nUMhtPM4iSk5uTZe3CwZzm5FJeV72BUr96E0T.eqP++kobNahiIUsze6ZRGv5CfNelqaVUcrIV67Nw5m2IN24chyedm3Bm2It34chK8lmH1SvJCTx9lyePuQsZp+pIYaaZKReTz5+ATu7FKB
-
RE: Waveform how to get playback position?
@d-healey said in Waveform how to get playback position?:
@ulrik Yes, if I had an audio file, but I have a waveform control linked to a sampler.
Did you find a solution for this?
-
RE: Waveform how to get playback position?
@Orvillain said in Waveform how to get playback position?:
Surely the sampler itself should be reporting this, not the WaveForm view ???
My brain looks at this problem more along these lines:
- Get sampler.
- Get currently playing file.
- Get sample position for currently playing file.
I'm sorry to dig in this old topic.
As I undertand, you are using a sampler for this right?
Could you please explain, or make a very small snippet, how to get the play position of the file? -
RE: Sliders not responding to "Consumed" MIDI CCs
@CyberGen Your snippet is working here, midi cc is received and knob is moved
-
Synth.addModulator(sample start, "Constant", "SampleStartMod")
It would be nice to have the function
Synth.addModulator(for the "Sample Start" chain, "Constant", "SampleStartMod")
implemented
and maybe the "Group Fade" chain as well
As it is now, it's impossible to add a modulator in a samplers "Sample Start" chain with the Synth.addModulator function
-
RE: enable Midi select
@d-healey said in enable Midi select:
@ulrik said in enable Midi select:
Or maybe there is an another way to create the selection?
Yeah you can create selections using all kinds of parameters with these functions
Yes, I use createSelection("") a lot.
but then I need to collect LoKey and HiKey for each sample in the map and then iterate over them to find which correspond to the pressed key, it would be easier to be able to control "enable MIDI selection" since it's already a built in function.Maybe the "createSelectionWithFilter" is the way to go, but I don't understand how it's working and I can't find any example of it.
Can you give an example? -
enable Midi select
I've searched for a way to control the "Enable MIDI selection" that is present in the sampler module, but I have not found anything about it
Is it possible to enable/disable this function via scripting?
My goal is to, in a ScriptProcessor, automatically create a selection of the played sample in a sampler.
Or maybe there is an another way to create the selection?
Any information is appreciated