Old 09-17-2018, 07:54 AM   #1
trinita
Human being with feelings
 
Join Date: Jul 2017
Posts: 67
Default Midi Editor Velocity

Hi guys, how can i insert my midi notes always at a fixed velocity?
this is what i mean with an example: i'm writing some notes e.g. on my piano, than i go on my drum to modify some velocity value; when i come back to my piano and the new notes i insert have same velocity of last modification.
thanks
trinita is offline   Reply With Quote
Old 09-17-2018, 04:12 PM   #2
teniente powell
Human being with feelings
 
teniente powell's Avatar
 
Join Date: Oct 2016
Location: Spain
Posts: 323
Default

Put this script as input fx:

-----------------------------------------

desc:MIDI Velocity Control min 1
//tags: MIDI processing

slider3:64<1,127,1>Velocity

in_pin:none
out_pin:none

@init

@slider
slider3<0?slider3=0;

@block
while (
midirecv(ts,msg1,msg23) ?
(
m=msg1&240;
vel=(msg23/256)|0;
note=msg23&127;
m == 9*16 && vel > 0 && note >= 1 && note <= 127 ?
(
vel = (vel*1)+0;
vel<slider3?vel=slider3:vel>slider3?vel=slider3;
vel|=0;

vel > 0 ? midisend(ts,msg1,note+vel*256); // send note on
) :
(
midisend(ts,msg1,msg23); // passthru
);
bla=1;
);
);
teniente powell is online now   Reply With Quote
Old 09-18-2018, 12:35 AM   #3
trinita
Human being with feelings
 
Join Date: Jul 2017
Posts: 67
Default

thanks Powell, something easier? a way to avoid to put an extra fx on every track?
trinita is offline   Reply With Quote
Old 09-18-2018, 01:07 AM   #4
teniente powell
Human being with feelings
 
teniente powell's Avatar
 
Join Date: Oct 2016
Location: Spain
Posts: 323
Default

Maybe adjust them after recording. In midi editor, make a custom action:

- Select all notes.
- X-Raym_Set selected notes velocity to 100
teniente powell is online now   Reply With Quote
Old 09-18-2018, 03:12 AM   #5
trinita
Human being with feelings
 
Join Date: Jul 2017
Posts: 67
Default

tahnks, this is what i made:-), with a custom key on that action...but it's a strange Reaper behaviour, i don't understand how it works...
trinita is offline   Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -7. The time now is 07:15 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.