Skip to main content

event based framework for generative art

Project description

mutwo

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

disclaimer: This framework is still in an early stage of development and the API may still change until version 1.0.0.

Mutwo is a flexible, event based framework for composing music or other time-based arts in Python. It aims to help composers to build musical structures in a meaningful way and translate those structures to different third party objects (e.g. midi files, csound scores, musical notation with Lilypond via abjad). The general design philosophy stresses out the independence and freedom of the user with the help of generic data structures and an easily extensible and tweakable software design.

The following example generates a short midi file:

from mutwo.events import basic, music
from mutwo.converters import frontends
simple_melody = basic.SequentialEvent(
    [
        music.NoteLike(pitch_name, duration=duration, volume="mf")
        for pitch_name, duration in (
            ("c", 0.75),
            ("a", 0.25),
            ("g", 1 / 6),
            ("es", 1 / 12),
        )
    ]
)
midi_file_converter = frontends.midi.MidiFileConverter("my_simple_melody.mid")
midi_file_converter.convert(simple_melody)

Making Western notation via abjad of the same melody:

import abjad
abjad_voice_converter = frontends.abjad.SequentialEventToAbjadVoiceConverter()
abjad_voice = abjad_voice_converter.convert(simple_melody)
abjad_score = abjad.Score([abjad.Staff([abjad_voice])])
abjad.show(abjad_score)

Lilypond engraving

Documentation

For more information how to use mutwo read the documentation.

Installation

Mutwo is available on pypi and can be installed via pip:

pip3 install mutwo

For using different backends or frontends (midi, abjad, ...) mutwo may need additional extra requirements. They can be installed by adding the respective backend in parenthesis:

pip3 install mutwo[abjad]

To install all extra requirements simply run:

pip3 install mutwo[all]

Requirements

Depending on the used converter classes, mutwo may need additional software to work properly. For using the Csound converter, you should install Csound first. For using Lilypond via mutwos abjad Converter, install Lilypond first. For using the ISiS converter, install ISiS first.

Similar projects

There are a many similar composition frameworks. Maybe one of them fits better to your particular use-case:

Python based composition frameworks:

  • scamp: "SCAMP is a computer-assisted composition framework in Python designed to act as a hub, flexibly connecting the composer-programmer to a variety of resources for playback and notation."
  • isobar: "isobar is a Python library for creating and manipulating musical patterns, designed for use in algorithmic composition, generative music and sonification."
  • kodou: "Kodou is a small module for algorithmic music notation which runs on top of the Lilypond (versions 2.18 to 2.21.0) compiler"
  • JythonMusic: "JythonMusic is an environment for music making and creative programming."

Composition frameworks in other languages:

  • slippery-chicken: "a Common Lisp and CLOS package for algorithmic composition."
  • OpenMusic: "OpenMusic (OM) is a visual programming language for computer-assisted music composition created at IRCAM, inheriting from a long tradition of computer-assisted composition research."
  • Euterpea: "Euterpea is a cross-platform, domain-specific language for computer music applications embedded in the Haskell programming language."
  • jMusic: "jMusic is a project designed to provide composers and software developers with a library of compositional and audio processing tools."
  • Comic: "A Lisp-Environment for Inter-Media Composition."

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-0.20.1.tar.gz (115.1 kB view details)

Uploaded Source

Built Distribution

mutwo-0.20.1-py3-none-any.whl (138.1 kB view details)

Uploaded Python 3

File details

Details for the file mutwo-0.20.1.tar.gz.

File metadata

  • Download URL: mutwo-0.20.1.tar.gz
  • Upload date:
  • Size: 115.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.6.4

File hashes

Hashes for mutwo-0.20.1.tar.gz
Algorithm Hash digest
SHA256 08f68105dc260f3e454dd7a119cb783a9f311caad9717b213f622a77fe5a8880
MD5 6c66a746bda9749acbfc9d43d6c55cf5
BLAKE2b-256 52787fa02e7423b802e70677e773a0985d569f69e4413b68b0035375530c5122

See more details on using hashes here.

File details

Details for the file mutwo-0.20.1-py3-none-any.whl.

File metadata

  • Download URL: mutwo-0.20.1-py3-none-any.whl
  • Upload date:
  • Size: 138.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.6.4

File hashes

Hashes for mutwo-0.20.1-py3-none-any.whl
Algorithm Hash digest
SHA256 5c0661dec40ee07a470ed52e39b5edc0db9dbb9f459e66694192610a5cd84d0d
MD5 18bae5e2ac6d27169c3b5c6e166d0f4a
BLAKE2b-256 a0cdb629b38c744684cd5cdf2d308b1b8353be38a70f3486667922813ae2b21c

See more details on using hashes here.

Supported by

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