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 human and machine readable description of 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 Message
Subclass ofSystemRealtime
status FE

Bender

Class
LabelBender Message
Subclass ofVoiceMessage
chunk
byteNumber 0
byteNumber 1
property benderValue
statusMask E0

ChannelPressure

Class
LabelChannel Pressure Message
Subclass ofVoiceMessage
chunk
byteNumber 0
property pressure
statusMask D0

Chunk

Class
LabelMIDI Chunk
In domain ofbyteNumber
property
In range ofchunk

A series of contiguous bytes (usually one) in a message.

Clock

Class
LabelClock Message
Subclass ofSystemRealtime
status F8

Continue

Class
LabelContinue Message
Subclass ofSystemRealtime
status FB

HexByte

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

A hexadecimal byte, which is a xsd:hexBinary 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 (i.e. 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, e.g. (in Turtle notation):

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

ProgramChange

Class
LabelProgram Change Message
Subclass ofVoiceMessage
chunk
byteNumber 0
property programNumber
statusMask C0

QuarterFrame

Class
LabelQuarter Frame Message
Subclass ofSystemCommon
status F1

Reset

Class
LabelReset Message
Subclass ofSystemRealtime
status FF

SongPosition

Class
LabelSong Position Pointer Message
Subclass ofSystemCommon
chunk
byteNumber 0
byteNumber 1
property songPosition
status F2

SongSelect

Class
LabelSong Select Message
Subclass ofSystemCommon
status F3

Start

Class
LabelStart Message
Subclass ofSystemRealtime
status FA

Stop

Class
LabelStop Message
Subclass ofSystemRealtime
status FC

SystemCommon

Class
LabelSystem Common Message
Subclass ofSystemMessage
Superclass ofQuarterFrame
SongPosition
SongSelect
TuneRequest

SystemExclusive

Class
LabelSystem Exclusive Message
Subclass ofSystemMessage
status F0

SystemMessage

Class
LabelSystem Message
Subclass ofMidiEvent
Superclass ofSystemCommon
SystemExclusive
SystemRealtime
statusMask F0

SystemRealtime

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

TuneRequest

Class
LabelTune Request Message
Subclass ofSystemCommon
status F6

Properties

benderValue

Property
Labelbender value
Rangexsd:short
TypeDatatype Property

The value of a pitch bender (-8192 to 8192).

binding

Property
Labelbinding
RangeMidiEvent
TypeObject Property

The MIDI event to bind a parameter to. This describes which MIDI events should be used to control a port, parameter, or other object. The binding should be a MidiEvent but the property that represents the control value may be omitted. For example, to bind to the value of controller 17:

eg:port midi:binding [
    a midi:Controller ;
    midi:controllerNumber 17
] .

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

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, i.e. 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).

History

Version 1.10 (2019-02-03)
  • Fix incorrect range of midi:chunk.
Version 1.8 (2012-10-14)
  • Use consistent label style.
  • Add midi:binding and midi:channel predicates.
  • Add midi:HexByte datatype for status bytes and masks.
  • Remove non-standard midi:Tick message type.
  • Add C definitions for message types and standard controllers.
  • Fix definition of SystemExclusive status byte.
Version 1.6 (2012-04-17)
  • Add class definitions for various message types.
  • Document how to serialise a MidiEvent to a string.
  • Merge with unified LV2 package.
Version 1.4 (2011-11-21)
  • Update packaging.
  • Improve documentation.
Version 1.2 (2011-05-26)
  • Add build system for installation.
  • Switch to ISC license.
Version 1.0 (2010-10-04)
  • Initial release.