3

I'm looking for a python midi library (preferably python3) which will allow me to produce midi commands so that I can control midi instruments on my mac.

I'm also interested in open sound control capabilities but this is less important.

Thanks,

Barry

Baz
  • 12,713
  • 38
  • 145
  • 268

3 Answers3

1

PyGame is a good starting point.

Nik Reiman
  • 39,067
  • 29
  • 104
  • 160
1

Another option is the python wrapper of PortMidi, pyPortMidi, which is where the MIDI support in PyGame comes from.

A good resource is the PythonInMusic page on the Python wiki.

bgporter
  • 35,114
  • 8
  • 59
  • 65
0

Could be a repeat of this. If not, there is definitely good Python MIDI info in that post.

So, basically you might want to use MidiUtil, a Python module.

Community
  • 1
  • 1
tylerthemiler
  • 5,496
  • 6
  • 32
  • 40
  • 1
    This util allows one to create midi files, not midi data that can be sent to instruments. – Baz Feb 29 '12 at 08:37