makenote
Description
Outputs a MIDI note-on message paired with a velocity value followed by a note-off message after a specified amount of time. This allows for generative MIDI output without having to manage note-off generation.
Examples

Discussion
This object uses the Max time format syntax. The interval that the makenote object uses to specify the time between not-on and note-off can be either fixed or tempo-relative (it must be a single-valued). An additional third argument can be used to specify a MIDI output channel (the makenote object will then have four inputs and three outputs).
Arguments
velocity [number]
Sets an initial velocity value (int or float) to be paired with incoming pitch numbers. If there is no argument, the initial velocity is
.duration [number]
Sets an initial note duration (time before a note-off is sent out), in any of Max's time units. A simple int or float will set the duration in milliseconds. If the second argument is not present, the note-off follows the note-on immediately.
channel [number]
Sets an initial MIDI channel number. If a third argument is used, the makenote object will have an additional fourth inlet (which specifies MIDI channel number) and an additional third outlet (which specifies MIDI output channel).
Attributes
duration [10 atoms]
The duration that makenote waits before a note-off message is sent out.
repeatmode [int]
Sets behavior when a note is retriggered. The modes are:
repeatmode 0 (default): There is no pre-specified behavior when when you repeat a pitch before the note-off for that pitch has been sent.
repeatmode 1: If a note is still playing when you retrigger it, the makenote object will send a note-off (velocity 0) message to stop the first note and then send a new note-on message.
repeatmode 2: If a note is still playing when you retrigger it, the makenote object will cancel the scheduled output of the first note - only the last played note will send note-off (velocity 0) message.
Possible values:
0 = 'Poly'
1 = 'Re-trigger'
2 = 'Stop Last'
Common Box Attributes
Messages
int
Arguments
In second inlet: The number is stored as a velocity to be paired with pitch numbers received in the left inlet.
In third inlet: The number is stored as the duration that makenote waits before a note-off message is sent out.
In fourth inlet: The number specifies a MIDI output channel. The fourth inlet will only be present if the makenote object is initialized with three arguments.
float
Arguments
In second inlet: The number is stored as a velocity to be paired with pitch numbers received in the left inlet.
In third inlet: The number is stored as the duration that makenote waits before a note-off message is sent out.
In fourth inlet: The number specifies a MIDI output channel. The fourth inlet will only be present if the makenote object is initialized with three arguments.
list
Arguments
If the makenote object is instantiated with three arguments, a four-item list can be used which contains an additional fourth element specifying the MIDI channel number, which is sent out the rightmost outlet of the object.
anything
Arguments
clear
clock
Arguments
stop
Output
int
Out left outlet: The number received in the left inlet is sent out immediately, paired with a velocity value out the other outlet. After a certain duration, the same number is sent out paired with a velocity of
Out right outlet: The number in the middle inlet is sent out as a velocity value in conjunction with a pitch value out the left outlet. After a certain duration, is sent out paired with the same pitch.
See Also
Name | Description |
---|---|
MIDI | MIDI |
flush | |
midiout | |
noteout | |
nslider | |
stripnote | |
transport | |
xnoteout | |
Max MIDI Tutorial 2: MIDI Note Management | Max MIDI Tutorial 2: MIDI Note Management |