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
>>> output = mido.open_output()
>>> output.send(mido.Message('note_on', note=60, velocity=64))
>>> with mido.open_input('SH-201') as inport:
...     for msg in inport:
...         print(msg)
>>> from mido import Message
>>> msg = Message('program_change', program=1)
>>> msg
<message program_change channel=0 program=1 time=0>
>>> msg.copy(program=2, time=100)
<message program_change channel=0 program=2 time=100>
>>> msg.time
100
>>> msg.bytes()
[192, 1]
>>> from mido import MidiFile
>>> for msg in MidiFile('song.mid').play():
...     output.send(msg)

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

Main Features

  • works in Python 2 and 3.

  • convenient message objects.

  • supports PortMidi, RtMidi 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.s

  • 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.1 is the second stable release.

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

Requirements

Mido targets Python 2.7 and 3.2.

If you want to use message ports, you will need PortMidi installed on your system. The PortMidi library is loaded on demand, so you can use the parser and messages without it.

The PortMidi wrapper is tested on on Ubuntu and Mac OS X, but may also run on other systems where the portmidi.so/dll file is available.

Alternative backends are included for python-rtmidi and Pygame. These can be selected with the environment variable MIDO_BACKEND or by calling mido.set_backend().

Like PortMidi, these are loaded on demand.

Installing

To install:

$ pip install mido

The PortMidi wrapper is written with ctypes, so no compilation is required.

If you want to use ports, you need the PortMidi shared library. The Ubuntu package is called libportmidi-dev, while the MacPorts and Homebrew packages are called portmidi.

To build documentation locally:

python setup.py docs

This requires Sphinx. The resulting files can be found in docs/_build/.

Known Bugs

  • in OS X, PortMidi and RtMidi usually hang for a second or two seconds while initializing. This is actually not a Mido bug, but something that happens at a lower level.

  • PortMidi in Ubuntu is mistakenly compiled in debug mode, which causes it to print out error message instead of returning an error code:

    PortMidi: `Bad pointer'
    type ENTER...PortMidi call failed...

    See https://bugs.launchpad.net/ubuntu/+source/portmidi/+bug/890600

    This means here is no way for Mido to catch the error and raise an exception.

    This regularity occurs in two places: in PortMidi when you close a port that has a callback, and in Pygame when you close any port.

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.1.20.tar.gz (82.0 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.1.20-py2.py3-none-any.whl (50.1 kB view details)

Uploaded Python 2Python 3

File details

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

File metadata

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

File hashes

Hashes for mido-1.1.20.tar.gz
Algorithm Hash digest
SHA256 ae72a5cc5d3a0d0c4d10ff554e7be8d0ebcd6cb4cb1a8703309d4434c83f61ee
MD5 f5143c2b7b4d9faeb99a6a57f39082a9
BLAKE2b-256 a3d3bd45fa01d3aac8b3ea226ae73623d4635e8e63418ec487a257a7af1127bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mido-1.1.20-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 cbf3cf501e6c2cb390f26958fba35004102a40a4a1042ec80e25e59ed9fc70d3
MD5 bc0c092daf61e358a24ad3a9470685cf
BLAKE2b-256 c65033c47fe148ea819f79d1dd3e50bcd6b5d8305c5160c2cbc10ca436fa6177

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