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
Classes
Aftertouch
ClassLabel | Aftertouch Message | ||||
---|---|---|---|---|---|
Subclass of | VoiceMessage | ||||
chunk |
| ||||
chunk |
| ||||
statusMask | A0 |
Bender
ClassLabel | Bender Message | ||||||
---|---|---|---|---|---|---|---|
Subclass of | VoiceMessage | ||||||
chunk |
| ||||||
statusMask | E0 |
ChannelPressure
ClassLabel | Channel Pressure Message | ||||
---|---|---|---|---|---|
Subclass of | VoiceMessage | ||||
chunk |
| ||||
statusMask | D0 |
Controller
ClassLabel | Controller Change Message | ||||
---|---|---|---|---|---|
Subclass of | VoiceMessage | ||||
chunk |
| ||||
chunk |
| ||||
statusMask | B0 |
HexByte
ClassIn range of | status |
---|---|
statusMask | |
velocity | |
owl:onDatatype | xsd:hexBinary |
A hexadecimal byte, which is a xsd:hexBinary value <= FF
MidiEvent
ClassLabel | MIDI Message |
---|---|
Subclass of | atom:Atom |
ev:Event | |
Superclass of | SystemMessage |
VoiceMessage | |
In range of | binding |
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 .
NoteOff
ClassLabel | Note Off Message | ||||
---|---|---|---|---|---|
Subclass of | VoiceMessage | ||||
chunk |
| ||||
chunk |
| ||||
statusMask | 80 |
NoteOn
ClassLabel | Note On Message | ||||
---|---|---|---|---|---|
Subclass of | VoiceMessage | ||||
chunk |
| ||||
chunk |
| ||||
statusMask | 90 |
ProgramChange
ClassLabel | Program Change Message | ||||
---|---|---|---|---|---|
Subclass of | VoiceMessage | ||||
chunk |
| ||||
statusMask | C0 |
SongPosition
ClassLabel | Song Position Pointer Message | ||||||
---|---|---|---|---|---|---|---|
Subclass of | SystemCommon | ||||||
chunk |
| ||||||
status | F2 |
SystemCommon
ClassLabel | System Common Message |
---|---|
Subclass of | SystemMessage |
Superclass of | QuarterFrame |
SongPosition | |
SongSelect | |
TuneRequest |
SystemMessage
ClassLabel | System Message |
---|---|
Subclass of | MidiEvent |
Superclass of | SystemCommon |
SystemExclusive | |
SystemRealtime | |
statusMask | F0 |
SystemRealtime
ClassLabel | System Realtime Message |
---|---|
Subclass of | SystemMessage |
Superclass of | ActiveSense |
Clock | |
Continue | |
Reset | |
Start | |
Stop |
VoiceMessage
ClassLabel | Voice Message |
---|---|
Subclass of | MidiEvent |
Superclass of | Aftertouch |
Bender | |
ChannelPressure | |
Controller | |
NoteOff | |
NoteOn | |
ProgramChange | |
statusMask | F0 |
Properties
benderValue
PropertyLabel | bender value |
---|---|
Range | xsd:short |
Type | Datatype Property |
The value of a pitch bender (-8192 to 8192).
binding
PropertyLabel | binding |
---|---|
Range | MidiEvent |
Type | Object 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
PropertyLabel | byte number |
---|---|
Domain | Chunk |
Range | xsd:unsignedByte |
Type | Datatype Property |
The 0-based index of a byte which is part of this chunk.
channel
PropertyLabel | MIDI channel |
---|---|
Range | xsd:unsignedByte |
Type | Datatype Property |
The channel number of a MIDI message.
controllerNumber
PropertyLabel | MIDI controller number |
---|---|
Range | xsd:byte |
Type | Datatype Property |
The numeric ID of a controller (0 to 127).
controllerValue
PropertyLabel | MIDI controller value |
---|---|
Range | xsd:byte |
Type | Datatype Property |
The value of a controller (0 to 127).
noteNumber
PropertyLabel | note number |
---|---|
Range | xsd:byte |
Type | Datatype Property |
The numeric ID of a note (0 to 127).
programNumber
PropertyLabel | program number |
---|---|
Range | xsd:byte |
Type | Datatype Property |
The numeric ID of a program (0 to 127).
property
PropertyLabel | property |
---|---|
Domain | Chunk |
Range | rdf:Property |
Type | Object Property |
The property this chunk represents.
songNumber
PropertyLabel | song number |
---|---|
Range | xsd:byte |
Type | Datatype Property |
The numeric ID of a song (0 to 127).
songPosition
PropertyLabel | song position |
---|---|
Range | xsd:short |
Type | Datatype Property |
Song position in MIDI beats (16th notes) (-8192 to 8192).
status
PropertyLabel | status byte |
---|---|
Range | HexByte |
Type | Datatype Property |
The exact status byte for a message of this type.
statusMask
PropertyLabel | status mask |
---|---|
Range | HexByte |
Type | Datatype 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.
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.
A series of contiguous bytes (usually one) in a message.