使用pygame.mixer.music选择要播放MIDI的设备

时间:2016-01-25 21:56:30

标签: python pygame midi

我正在使用- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell"]; NamedUISwitch *switchview = nil; if (!cell) { cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cell"]; switchview = [[NamedUISwitch alloc] initWithFrame:CGRectZero]; [switchview addTarget:self action:@selector(updateSwitchAtIndexPath:) forControlEvents:UIControlEventTouchUpInside]; cell.accessoryView = switchview; } else { switchview = cell.accessoryview; } cell.textLabel.text = ...; switchview.nomEtablissement = ...; switchview.tag = ...; switchview.typeInfo = ...; // You also need to set switchview.on here return cell; } 从我的Python应用程序中播放一些MIDI文件。我想让用户选择将设备发送到的MIDI设备。使用pygame.mixer.music播放单个事件时,此功能正常,但我找不到任何方法可以选择用于pygame.midi.Output的{​​{1}}。

如何设置device_id用于播放MIDI文件的输出设备?

0 个答案:

没有答案