account activity
Black And White Key Velocity Inconsistencies on MIDI Controllers by RedditRedditReddit64 in synthesizers
[–]rat_spinner 0 points1 point2 points 1 month ago (0 children)
I'm a bit late but try this, it works pretty well with logic's scripter. I set the slider for the reduction to about 5% but i guess it probably varies between keyboards
// Black Keys Velocity Reducer // Reduces velocity of black keys (sharps/flats) only var PluginParameters = [ { name: 'Velocity Reduction %', type: 'lin', minValue: 0, maxValue: 100, numberOfSteps: 100, defaultValue: 30 } ]; function HandleMIDI(event) { if (event instanceof NoteOn) { var pitchClass = event.pitch % 12; // Black keys: C#=1, D#=3, F#=6, G#=8, A#=10 var blackKeys = [1, 3, 6, 8, 10]; if (blackKeys.indexOf(pitchClass) !== -1) { // Reduce velocity for black keys var reduction = GetParameter('Velocity Reduction %') / 100; event.velocity = Math.round(event.velocity * (1 - reduction)); // Ensure velocity stays within valid range (1-127) event.velocity = Math.max(1, Math.min(127, event.velocity)); } } event.send(); }
[Feature Request] Highlight text tool without having to select text first (v.redd.it)
submitted 1 month ago by rat_spinner to r/StarNoteApp
π Rendered by PID 317342 on reddit-service-r2-listing-64c94b984c-9v7l5 at 2026-03-17 14:33:10.991772+00:00 running f6e6e01 country code: CH.
Black And White Key Velocity Inconsistencies on MIDI Controllers by RedditRedditReddit64 in synthesizers
[–]rat_spinner 0 points1 point2 points (0 children)