Skip to main content

MMML extension for event based framework for generative art

Project description

mutwo.mmml

Build Status License: GPL v3 PyPI version Code style: black

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.

Installation

mutwo.mmml is available on pypi and can be installed via pip:

pip3 install mutwo.mmml

The rules

MMML is a very simple and minimalistic file format with few, but quite strict rules.

1 MMML expression <=> 1 event

  1. A MMML string consist of only one MMML expression.
  2. Each MMML expression consist of exactly 1 event.
  3. But an event can have children events (it can be nested).

An MMML expression = head + block

  1. An MMML expression has two parts: a head and a block.
  2. The head tells what type of event we have with which arguments.
  3. The block defines all children events that our main event has.
$HEAD
    $BLOCK

The head: main event (= container) definition

  1. An MMML expression head is defined across exactly one line in a text.
  2. It consist of different parts that are separated by one or more white spaces.
  3. 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

The block: children events definitions

  1. 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.
  2. A block is composed of one or more MMML expressions.
  3. 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

Builtin head / event types

mutwo.mmml provides few builtin events:

cns $tag $tempo

Renders to Consecution.

cnc $tag $tempo

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.

Extra rules

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.

  1. Empty lines are ignored. Empty means 'only white space or tabs' or 'nothing at all'.
  2. Any line, where the first character (that's not white space) is '#', is also ignored. Such a line is regarded as a comment.
  3. 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.

Example

# 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

Extending mutwo.mmml

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mutwo_mmml-0.11.0.tar.gz (25.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mutwo_mmml-0.11.0-py3-none-any.whl (25.9 kB view details)

Uploaded Python 3

File details

Details for the file mutwo_mmml-0.11.0.tar.gz.

File metadata

  • Download URL: mutwo_mmml-0.11.0.tar.gz
  • Upload date:
  • Size: 25.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.20

File hashes

Hashes for mutwo_mmml-0.11.0.tar.gz
Algorithm Hash digest
SHA256 ab3e6a2a6297126641c90e3501f1ccd8e8de7ce5673058a78fb4826d2b4a68d4
MD5 53ebcf29dfeb04fab10d26999d0c37e2
BLAKE2b-256 23810b621cda91de20252da63533e3afb01ca75482689f8afbdb18423fb4dede

See more details on using hashes here.

File details

Details for the file mutwo_mmml-0.11.0-py3-none-any.whl.

File metadata

  • Download URL: mutwo_mmml-0.11.0-py3-none-any.whl
  • Upload date:
  • Size: 25.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.20

File hashes

Hashes for mutwo_mmml-0.11.0-py3-none-any.whl
Algorithm Hash digest
SHA256 1dc73f0218596bf537f113ba3cc1be094019e456641ba8672701f3666c149700
MD5 f9fe1cbba95302903635a5c38d94b0c5
BLAKE2b-256 ef4cdd33e9c6ae93a33667b427a5ff14901cffb332aa84b4eccfd68deca5c426

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page