9

我想用我的 RPi 收听在 Debian 上运行的带有我的 midi 输出设备(钢琴)的端口。我查看了 pygame.midi,我设法监听了端口,但不知何故无法提取所有 midi 信息。请在下面找到代码[编辑的代码片段]

编辑:已修复,非常感谢!

4

1 回答 1

14

首先,您需要找出您的键盘在 pygame 中的设备 ID。我写了这个小函数来找出:

import pygame.midi

def print_devices():
    for n in range(pygame.midi.get_count()):
        print (n,pygame.midi.get_device_info(n))

if __name__ == '__main__':
    pygame.midi.init()
    print_devices()

它看起来像这样:

(0, ('MMSystem', 'Microsoft MIDI Mapper', 0, 1, 0))
(1, ('MMSystem', '6- Saffire 6USB', 1, 0, 0))
(2, ('MMSystem', 'MK-249C USB MIDI keyboard', 1, 0, 0))
(3, ('MMSystem', 'Microsoft GS Wavetable Synth', 0, 1, 0))

从 pygame 手册中,您可以了解到此信息元组中的第一个 One 将此设备确定为合适的输入设备。所以让我们在一个无限循环中从中读取一些数据:

def readInput(input_device):
    while True:
        if input_device.poll():
            event = input_device.read(1)
            print (event)

if __name__ == '__main__':
    pygame.midi.init()
    my_input = pygame.midi.Input(2) #only in my case the id is 2
    readInput(my_input)

这表明:

[[[144, 24, 120, 0], 1321]]

我们有一个包含 2 个项目的列表:

  • midi数据列表和
  • 时间戳

第二个值是您感兴趣的值。因此我们将其打印为注释:

def number_to_note(number):
    notes = ['c', 'c#', 'd', 'd#', 'e', 'f', 'f#', 'g', 'g#', 'a', 'a#', 'b']
    return notes[number%12]

def readInput(input_device):
    while True:
        if input_device.poll():
            event = input_device.read(1)[0]
            data = event[0]
            timestamp = event[1]
            note_number = data[1]
            velocity = data[2]
            print (number_to_note(note_number), velocity)

我希望这会有所帮助。这是我的第一个答案,我希望它不会太长。:)

于 2014-07-18T09:21:57.390 回答