Skip to main content

MIDI Objects for Python

Project description

Mido is a library for working with MIDI messages and ports. It’s designed to be as straight forward and Pythonic as possible:

>>> import mido
>>> msg = mido.Message('note_on', note=60)
>>> msg.note
60
>>> msg.bytes()
[144, 60, 64]
>>> msg.copy(channel=2)
<message note_on channel=2 note=60 velocity=64 time=0>
with mido.open_input('LinnStrument') as inport:
    for msg in inport:
        print(msg)
port = mido.open_output()
port.send(msg)
mid = mido.MidiFile('song.mid')
for msg in mid.play():
    port.send(msg)

Full documentation at https://mido.readthedocs.io/

Main Features

  • works in Python 2 and 3.

  • convenient message objects.

  • supports RtMidi, PortMidi and Pygame. New backends are easy to write.

  • full support for all 18 messages defined by the MIDI standard.

  • standard port API allows all kinds of input and output ports to be used interchangeably. New port types can be written by subclassing and overriding a few methods.

  • includes a reusable MIDI parser.

  • full support for MIDI files (read, write, create and play) with complete access to every message in the file, including all common meta messages.

  • can read and write SYX files (binary and plain text).

  • implements (somewhat experimental) MIDI over TCP/IP with socket ports. This allows for example wireless MIDI between two computers.

  • includes programs for playing MIDI files, listing ports and serving and forwarding ports over a network.

Status

1.2 is the third stable release.

See docs/changes.rst for a full list of changes.

Requirements

Mido targets Python 2.7 and 3.2.

See docs/installing.rst for more on requirements for port backends.

Installing

pip install mido

If you want to use ports:

pip install python-rtmidi

See docs/installing.rst for more.

Source Code

https://github.com/olemb/mido/

License

Mido is released under the terms of the MIT license.

Contact

Ole Martin Bjorndalen - ombdalen@gmail.com

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

mido-1.2.2.tar.gz (92.5 kB view details)

Uploaded Source

Built Distribution

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

mido-1.2.2-py2.py3-none-any.whl (69.3 kB view details)

Uploaded Python 2Python 3

File details

Details for the file mido-1.2.2.tar.gz.

File metadata

  • Download URL: mido-1.2.2.tar.gz
  • Upload date:
  • Size: 92.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for mido-1.2.2.tar.gz
Algorithm Hash digest
SHA256 a780263594872a7d7f8ed1ccb9b1b58a32e422b1004f4723c9f2c059c492cd41
MD5 154d52de7a57013181ed2d6b646d017c
BLAKE2b-256 8da09b723549088cfb2ad64bf74b77db45508355934acfff4692024fc8001178

See more details on using hashes here.

File details

Details for the file mido-1.2.2-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for mido-1.2.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 842b7c111b987750f0548b807237af3dec8034d90b8b862baf585e8c00b8b1d0
MD5 c47b55c28b9b77605dbf751e655c836a
BLAKE2b-256 86921ad5616b4dcacfdd111f55043ebcc4d5dcc5a8c5aec36f54afa9f3a34334

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