mido

MIDI Objects for Python

Github星跟踪图

Mido - MIDI Objects for Python

.. image:: https://travis-ci.org/mido/mido.svg?branch=master
:target: https://travis-ci.org/mido/mido

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

.. code-block:: python

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)

.. code-block:: python

port = mido.open_output('Port Name')
port.send(msg)

.. code-block:: python

with mido.open_input() as inport:
    for msg in inport:
        print(msg)

.. code-block:: python

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.

Requirements

Mido targets Python 2.7 and 3.2.

Installing

::

pip install mido

If you want to use ports::

pip install python-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 <http://en.wikipedia.org/wiki/MIT_License>_.

Questions and suggestions

Please ask questions about Mido at
https://groups.google.com/forum/#!forum/mido-community.

This mailing list was created to give both the user community a place to ask
and hopefully also answer questions and for the developers a space to discuss
Mido development. The success of the mailing list will depend on the community
effort to also answer questions.

Looking for maintainers

This project is looking for somebody to take over the maintenance since the
original author @olemb is busy with other projects. We look for somebody or a
group of people who care about the code and would like to steer this project in
future by discussing proposals, reviewing pull requests, and looking over
issues. Please write to mido-community@googlegroups.com if you would like to
help out with maintenance.

主要指标

概览
名称与所有者mido/mido
主编程语言Python
编程语言Python (语言数: 1)
平台
许可证MIT License
所有者活动
创建于2013-06-23 18:11:38
推送于2024-11-12 09:40:03
最后一次提交
发布数46
最新版本名称1.3.3 (发布于 2024-10-25 16:56:48)
第一版名称1.0.0 (发布于 )
用户参与
星数1.5k
关注者数42
派生数240
提交数2.3k
已启用问题?
问题数319
打开的问题数96
拉请求数115
打开的拉请求数18
关闭的拉请求数41
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?