Jump to content

fyankai

Member
  • Posts

    5
  • Joined

  • Last visited

fyankai's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. I had a play with this but couldn't find a way to decrease the velocity smoothly across the top end of the keyboard. Seems like the filters are on/off, so notes get the processing or not. Maybe I'm missing something though... In any case I've just discovered the Script Editor! I'm OK with Javascript so found that this does the trick: function HandleMIDI(event) { event.trace(); if (event.pitch > 86) { var reduction_amount = (86 - event.pitch) * 2; event.velocity = Math.max((event.velocity + reduction_amount), 1); } event.trace(); event.send(); } But still curious to know if there's a way to do this with a Transformer object. (Partly due to reading some things suggesting that processing MIDI data with the Script Editor can cause some timing issues.)
  2. Thanks guys, that's very helpful. I'm going to give it a go, will let you know how I get on...
  3. Thanks Jordi and sorry my original post wasn't clear! I'm using the Scarbee Mark I rhodes. And unfortunately I don't have the full Kontakt, just Kontakt Player which seems to rule out Kontakt scripts. I'll take a look at transformer objects. I'm new to the midi environment so all looks a bit frightening but will give it a go! Any pointers as to where to start? Or maybe it's complex enough that I just need to get my head down and learn the whole thing?
  4. Thanks for replying, Jordi. Does Note Range Min and Max not refer to which velocities get processed? (Just guessing as they have values of 0-127.) Or if those do let you target just one area of the keyboard, wouldn't that make it an on/off thing (bottom part of keyboard doesn't get compressed, top part gets compressed uniformly) rather than gradually having more effect as you go up the keyboard? Just to clarify, I need this to kick in gradually from note D5, with the velocities getting more compressed as you go up to F6 and then levelling out. And ideally I'd like to be able to draw any shape across the keyboard to even out patches that have louder/quieter areas. Obviously it'd be nice to be able to do this from within the virtual instrument, but NI Scarbee is pretty basic control-wise.
  5. Hi all I'm fairly new to Logic Pro X and can't seem to find an answer to this question anywhere... I've got a software instrument (NI Scarbee running in Kontakt Player) on which the higher notes come out too loud. I've been using it live and have been using Mainstage's Note Input (under Velocity Scaling in that channel's Midi Input panel) to tame the top end. It basically reduces the velocity parameter smoothly, across the keyboard so that only the top end is effected. See screenshot... Is there a way to do the same thing in Logic Pro X? I need it to happen as I'm playing, rather than as a post-production thing, and to only apply to the channel that that instrument is on. Thanks in advance for any help with this. Frank
×
×
  • Create New...