-
Kontakt is not seeing Sibelius' text-based note-on messages, ex. "~N50, 100"
I'm hoping for a KSP script that will allow Kontakt to treat Sibelius' text-based note-on messages like any other note-on. "~N50, 100" should be sending pitch 50 with velocity of 100 to Kontakt, but instead it is doing nothing. This format is what Graphical MIDI Tools "ghost notes" enters, fyi. So it must be working for…
-
How to attach Attack from the volume envelope to a knob in KSP?
I have most of the code set up to achieve this but I believe I am just not understanding how to use set_engine_par to call upon the attack parameter. I believe since it is a modulator that there is something more to it but I have not been able to figure it out. I have included a screenshot of my current code. It lets me…
-
Double pendulum as modulation in Kontakt KSP
Hi, I'm trying to use a double pendulum to modulate parameters within KSP I've given it a go but my code is not giving me results. I was hoping to see some sort of wavy modulation See code attached, any help would be gratefully appreciated, thanks in advance. on init declare ui_knob $Volume (0,1000000,1000000) declare ~L1…
-
2 x Waveform Display - Attach Zone Problem
Hi, Can anyone put me out of my misery please!? Currently, the Menu's populate with the correct names but the Menu B isn't behaving as it should. If I select a sample from Menu B the wrong sound is played. It is playing the Group linked to Menu A and not the from the groups linked to Menu B. Also, the incorrect zone is…
-
Why does the Harmony Tonal preset contain no support for Groups?
The Factory/Harmony Tonal preset does not contain any support for choosing instrument groups. It contains no allow_group or disallow_group calls. When you attempt to use the preset with the Factory Library Orchestral/Strings presets, such as Cello Solo or Viola Solo, the group selected is always forced to Tremolo. How…
-
copy zones and groups one octave higher
Hi, I am making a percussion instrument on Kontakt. I want to copy all the groups including all Round robin and samples one octave higher. Then it will be easier play fast rhythms. How can I copy all what I created one octave higher without any scripting..I hope the question is clear. Attaching a picture as well. Thanks
-
Do you experiment noises when apply AET filter to your groups?
Hi, I find the AET filter a great thing, specially if I sample an acoustic instrument that has quite different quality sound if played softer or louder. The problem is that I have applied the AET filter to a clarinet instrument that I have create and for moments it sounds great but then without any obvious reason it sounds…
-
Adding Knob to KONTAKT player
Hello , I am not a script guy. In nooo way at all. I just follow videos to help out for my project . Ive made a custom Library and im want to add custom knobs to my player .Ive seen videos of guys add the Cut off Knob ,which is an insert (InsertEffects) ) I wanted to know how to add a Modulation Knob like Curve ,Hold,…
-
Assigning a specifc group to separate output
I have a set of samples for a live gig and need an effect assigned to one sample (delay). I'd like to have this all in one instrument (ease of assignment and portability), but I can't figure it out. a. Is there a way to use an insert delay effect with that one sample? b. I've assigned that one sample to a separate Group,…
-
Multi (nkm) won't load correctly
I've just created (twice, actually) two very simple sample racks that load correctly. I've then loaded both of them together and saved that as a multi. However, when I load that multi, both racks load with the samples of the second one but the envelope etc. settings correct to each. What am I missing?
-
Monophonic instruments in Kontakt 7
I searched the Kontakt 7 manual for 'monophonic' and i found no config option that sets an instrument as monophonic instead of polyphonic. It seems incredible, so i must be missing something... any help please?
-
End on expected error when scripting. How to fix?
Created Kontakt instrument. Performs as expected. Attempting to add UI. Graphic is 565 px high, 100 px wide. Is .png file type. Upon entering "on init" and "make_perfview", "make_perfview" line is red. States line 3 error end on expected. Entered "end on". clicked "apply". Error persists.
-
ready $ENGINE_PAR(s) from array
Hi All, I cannot find a solution to this and I've been searching for a while. I want to store the $ENGINE_PAR built in variables in an array and then recall that array in set_engine_par kind of like this: on init declare slider $knob_filter_freq (0,100000) declare !filterdata[2*5] := (... {0} $ENGINE_PAR_CUTOFF, 1,…
-
Issue with slider behaviour - click release changes the value
Hey guys, I have an issue with a slider (reverb volume in my case, although I don't think it's relevant). When I click the slider, adjust the value and I see the value changing in a display label. However when I release the mouse click the value changes a little. While trying to explore the issue I figured out that if I'm…
-
Drum Machine that works like an arranger
What i have achieved: -Instrument that triggers drum sample loops that sync to tempo And end at sample end point What i WANT to achieve: -I want the drum loop to play Endlessly untill i press the NOTE it was triggered by or by another note (But it will let the sample Finish before going to the next one) -If it's possible…
-
How do i add a swing button in my custom library?
Hello guys , im creating my own rythem guitar Kontakt Library . Now Ive got Electric Sunburst Library and it has a swing knob that changes the rythem of the guitar . How do i make a swing knob to put into my interface . Please help . Thank you
-
Creator Tools hanging on push
I've used a script to load a bunch of samples into a new Group, but when I push, it gets stuck on "Assigning instrument". What are some potential reasons for this? One thing I notice that is different about the zones I've created from my script vs the the zones I create manually is that the filenames begin with "…///Users"…
-
KSP Improvement Suggestions
Here is a small list of very useful features that I wish were available in KSP to save some code writing: ● The ability to pass variables to functions like this: function myFunction($var1, %var2, …) declare $myFunctionVar1 := $var1 declare %myFunctionVar2 := %var2 … end function ● The ability to use local scope variables…
-
How to make "change_vol" work as in the documentation?
Hello, Using Kontakt Noire, I am trying to change a note volume using KSP like in the documentation : ni-tech-manuals/ksp-manual/en/event-commands#change_vol-- on note change_vol ($EVENT_ID, 0, 0) end on Whatever the values I use it does not work. I have managed to change other properties, "change_velo" works. But not…
-
Kontakt Noire - select Zones independently of velocity
Hello, Using Kontakt Noire, I am looking for a way to dissociate Velocity / Zone selection. I would like to keep using Velocity to scale the envelope, but not anymore for selecting a Zone (pianissimo, fortissimo, etc..). I would then want to control the zone (ie. pianissimo, fortissimo, etc) with a single voice independent…