This specification defines a data type for a MIDI message, MidiEvent, which is normalised for fast and convenient real-time processing. MIDI is the Musical Instrument Digital Interface, a ubiquitous binary standard for controlling digital music devices.

For plugins that process MIDI (or other situations where MIDI is sent via a generic transport) the main type defined here, MidiEvent, can be mapped to an integer and used as the type of an LV2 Atom or Event.

This specification also defines a complete vocabulary for the MIDI standard, except for standard controller numbers. These descriptions are detailed enough to express any MIDI message as properties.

Index

ClassesProperties

Classes

ActiveSense

Class
LabelActive Sense
Subclass ofSystemRealtime
status fe

MIDI active sense message.

Aftertouch

Class
LabelAftertouch
Subclass ofVoiceMessage
chunk
byteNumber 0
property noteNumber
chunk
byteNumber 1
property pressure
statusMask a0

MIDI aftertouch message.

Bender

Class
LabelBender
Subclass ofVoiceMessage
chunk
byteNumber 0
byteNumber 1
property benderValue
statusMask e0

MIDI bender message.

ChannelPressure

Class
LabelChannel Pressure
Subclass ofVoiceMessage
chunk
byteNumber 0
property pressure
statusMask d0

MIDI channel pressure message.

Chunk

Class
LabelChunk
In domain ofbyteNumber
property
In range ofchunk

A sequence of contiguous bytes in a MIDI message.

Clock

Class
LabelClock
Subclass ofSystemRealtime
status f8

MIDI clock message.

Continue

Class
LabelContinue
Subclass ofSystemRealtime
status fb

MIDI continue message.

Controller

Class
LabelController
Subclass ofVoiceMessage
chunk
byteNumber 0
property controllerNumber
chunk
byteNumber 1
property controllerValue
statusMask b0

MIDI controller change message.

HexByte

Class
LabelHex Byte
In range ofstatus
statusMask
velocity
owl:onDatatype xsd:hexBinary

A hexadecimal byte, which has a value <= FF.

MidiEvent

Class
LabelMIDI Message
Subclass ofatom:Atom
ev:Event
Superclass ofSystemMessage
VoiceMessage
In range ofbinding
owl:onDatatype xsd:hexBinary

A single raw MIDI message.

A single raw MIDI message (a sequence of bytes).

This is equivalent to a standard MIDI messages, except with the following restrictions to simplify handling:

  • Running status is not allowed, every message must have its own status byte.

  • Note On messages with velocity 0 are not allowed. These messages are equivalent to Note Off in standard MIDI streams, but here only proper Note Off messages are allowed.

  • "Realtime messages" (status bytes 0xF8 to 0xFF) are allowed, but may not occur inside other messages like they can in standard MIDI streams.

  • All messages are complete valid MIDI messages. This means, for example, that only the first byte in each event (the status byte) may have the eighth bit set, that Note On and Note Off events are always 3 bytes long, etc.

Where messages are communicated, the writer is responsible for writing valid messages, and the reader may assume that all events are valid.

If a MidiEvent is serialised to a string, the format should be xsd:hexBinary, for example:

[] eg:someEvent "901A01"^^midi:MidiEvent .

NoteOff

Class
LabelNote Off
Subclass ofVoiceMessage
chunk
byteNumber 0
property noteNumber
chunk
byteNumber 1
property velocity
statusMask 80

MIDI note off message.

NoteOn

Class
LabelNote On
Subclass ofVoiceMessage
chunk
byteNumber 0
property noteNumber
chunk
byteNumber 1
property velocity
statusMask 90

MIDI note on message.

ProgramChange

Class
LabelProgram Change
Subclass ofVoiceMessage
chunk
byteNumber 0
property programNumber
statusMask c0

MIDI program change message.

QuarterFrame

Class
LabelQuarter Frame
Subclass ofSystemCommon
status f1

MIDI quarter frame message.

Reset

Class
LabelReset
Subclass ofSystemRealtime
status ff

MIDI reset message.

SongPosition

Class
LabelSong Position
Subclass ofSystemCommon
chunk
byteNumber 0
byteNumber 1
property songPosition
status f2

MIDI song position pointer message.

SongSelect

Class
LabelSong Select
Subclass ofSystemCommon
status f3

MIDI song select message.

Start

Class
LabelStart
Subclass ofSystemRealtime
status fa

MIDI start message.

Stop

Class
LabelStop
Subclass ofSystemRealtime
status fc

MIDI stop message.

SystemCommon

Class
LabelSystem Common
Subclass ofSystemMessage
Superclass ofQuarterFrame
SongPosition
SongSelect
TuneRequest

MIDI system common message.

SystemExclusive

Class
LabelSystem Exclusive
Subclass ofSystemMessage
status f0

MIDI system exclusive message.

SystemMessage

Class
LabelSystem Message
Subclass ofMidiEvent
Superclass ofSystemCommon
SystemExclusive
SystemRealtime
statusMask f0

MIDI system message.

SystemRealtime

Class
LabelSystem Realtime
Subclass ofSystemMessage
Superclass ofActiveSense
Clock
Continue
Reset
Start
Stop

MIDI system realtime message.

TuneRequest

Class
LabelTune Request
Subclass ofSystemCommon
status f6

MIDI tune request message.

VoiceMessage

Class
LabelVoice Message
Subclass ofMidiEvent
Superclass ofAftertouch
Bender
ChannelPressure
Controller
NoteOff
NoteOn
ProgramChange
statusMask f0

MIDI voice message.

Properties

benderValue

Property
Labelbender value
Rangexsd:short
TypeDatatype Property

MIDI pitch bender message (-8192 to 8192).

binding

Property
Labelbinding
RangeMidiEvent
TypeObject Property

The MIDI event to bind a parameter to.

byteNumber

Property
Labelbyte number
DomainChunk
Rangexsd:unsignedByte
TypeDatatype Property

The 0-based index of a byte which is part of this chunk.

channel

Property
LabelMIDI channel
Rangexsd:unsignedByte
TypeDatatype Property

The channel number of a MIDI message.

chunk

Property
LabelMIDI chunk
RangeChunk
TypeObject Property

A chunk of a MIDI message.

controllerNumber

Property
LabelMIDI controller number
Rangexsd:byte
TypeDatatype Property

The numeric ID of a controller (0 to 127).

controllerValue

Property
LabelMIDI controller value
Rangexsd:byte
TypeDatatype Property

The value of a controller (0 to 127).

noteNumber

Property
Labelnote number
Rangexsd:byte
TypeDatatype Property

The numeric ID of a note (0 to 127).

pressure

Property
Labelkey pressure
Rangexsd:byte
TypeDatatype Property

Key pressure (0 to 127).

programNumber

Property
Labelprogram number
Rangexsd:byte
TypeDatatype Property

The numeric ID of a program (0 to 127).

property

Property
Labelproperty
DomainChunk
Rangerdf:Property
TypeObject Property

The property this chunk represents.

songNumber

Property
Labelsong number
Rangexsd:byte
TypeDatatype Property

The numeric ID of a song (0 to 127).

songPosition

Property
Labelsong position
Rangexsd:short
TypeDatatype Property

Song position in MIDI beats (16th notes) (-8192 to 8192).

status

Property
Labelstatus byte
RangeHexByte
TypeDatatype Property

The exact status byte for a message of this type.

statusMask

Property
Labelstatus mask
RangeHexByte
TypeDatatype Property

The status byte for a message of this type on channel 1.

This is a status byte with the lower nibble set to zero.

velocity

Property
Labelvelocity
RangeHexByte
TypeDatatype Property

The velocity of a note message (0 to 127).