This package adds parsers and specifications for the 'mutwo music markup language' (short: MMML). With this language it's easy, fast and convenient to write music in a text file. MMML consist of expressions that can be converted to mutwo events. The package also adds reverse parsers, to convert mutwo events back to MMML.
mutwo.mmml is available on pypi and can be installed via pip:
pip3 install mutwo.mmml
MMML is a very simple and minimalistic file format with few, but quite strict rules.
- A MMML string consist of only one MMML expression.
- Each MMML expression consist of exactly 1 event.
- But an event can have children events (it can be nested).
- An MMML expression has two parts: a head and a block.
- The head tells what type of event we have with which arguments.
- The block defines all children events that our main event has.
$HEAD
$BLOCK
- An MMML expression head is defined across exactly one line in a text.
- It consist of different parts that are separated by one or more white spaces.
- The first part of a head declares the event type, all other parts are arguments for the event. All arguments are optional.
$EVENT_TYPE $ARG_0 $ARG_1 ... $ARG_N
- To start a block after a head, we need to increase the indentation of +4 white spaces compared to the indentation level of the head.
- A block is composed of one or more MMML expressions.
- In this way we can define on or more events that are part of the main event that's defined in the head.
$HEAD
$MMML_EXPRESSION_0
$MMML_EXPRESSION_1
$MMML_EXPRESSION_2
...
$MMML_EXPRESSION_N
mutwo.mmml
provides few builtin events:
Renders to Consecution.
Renders to Concurrence.
n $duration $pitch $volume $playing_indicator_collection $notation_indicator_collection $lyric $instument_list
Renders to NoteLike.
r $duration $volume $playing_indicator_collection $notation_indicator_collection $lyric $instument_list
Renders to NoteLike.
Same like n
, but without the option to specify pitches.
Besides the basic rules, MMML has a few extra rules to make using the language more convenient. They generally aim to be easily implementable and not making the language too complex.
- Empty lines are ignored. Empty means 'only white space or tabs' or 'nothing at all'.
- Any line, where the first character (that's not white space) is '#', is also ignored. Such a line is regarded as a comment.
- The special head argument
_
is always skipped. In this way it's possible to define for instance the fourth argument of an event without necessarily having to declare all three previous arguments.
# We can write comments when starting a line with '#'
# whitespace at the beggining is ignored for comments
# Let's express one simultaneous event that contains our music.
cnc music
# It contains two sequences: a violin and a cello voice.
cns violin
# 'n' is used to express a note.
n 1/4 a5 p
n 1/4 bf5
n 1/4 a5
# We can skip arguments with _
n 1/8 _ _ fermata.type=fermata
# 'r' is used to express a rest.
r 1/4
n 1/4 a5 mf
n 1/4 bf5 mp
n 1/4 a5
r 1/4
cns cello
n 1/2 c3 p
r 1/2
n 1/2 d3 p
r 1/2
mutwo.mmml
can easily be appended by new event types.
Already given event types can also be overridden.
For this purpose mutwo.mmml
uses a registry as a API.
To understand how this can be used simply check the respective source code.