Skip to main content

MIDI Objects for Python

Project description

MIT License PyPi version Python version Downloads Test status Docs status REUSE status OpenSSF Best Practices

Mido is a library for working with MIDI messages and ports:

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

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

Main Features

  • 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 stream 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.3 is the fourth stable release.

This project uses Semantic Versioning.

Requirements

Mido requires Python 3.7 or higher.

Installing

python3 -m pip install mido

Or, alternatively, if you want to use ports with the default backend:

python3 -m pip install mido[ports-rtmidi]

See docs/backends/ for other backends.

Source Code

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

License

Mido is released under the terms of the MIT license.

Questions and suggestions

For questions and proposals which may not fit into issues or pull requests, we recommend to ask and discuss in the Discussions section.

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.3.2.tar.gz (124.2 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.3.2-py3-none-any.whl (54.6 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: mido-1.3.2.tar.gz
  • Upload date:
  • Size: 124.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for mido-1.3.2.tar.gz
Algorithm Hash digest
SHA256 3aea28b6ed730f737d5b12da3578debe9dc50058fa370fe9ceded9189b67c348
MD5 e16447751e3d8144a4ad72219a43dbee
BLAKE2b-256 9ea4f9bfc7016c9fb1e348078a3455ab0d1573bcb5154dc7fc1aba9fcfe38b95

See more details on using hashes here.

File details

Details for the file mido-1.3.2-py3-none-any.whl.

File metadata

  • Download URL: mido-1.3.2-py3-none-any.whl
  • Upload date:
  • Size: 54.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for mido-1.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 9f5668d2eae78e43d54f4c651f8bf41a614eb23f98ce5179d3ddd984bf19eb58
MD5 4a3b3456a39fcaee32458e12904cbcad
BLAKE2b-256 392cdf005c4b310dde2c834431032139bf2c3924f81798013feb052d1afd543b

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