gpt4 book ai didi

java - 树莓派上的 Midi 输入

转载 作者:行者123 更新时间:2023-12-04 20:01:03 27 4
gpt4 key购买 nike

我实现了一个简单的程序,它从 Midi 键盘获取输入,然后使用 javax 合成器接口(interface)输出相应的声音。这在我运行 Windows 的 PC 上运行得非常好,但是,我想在运行 Raspbian 的 Raspberry Pi 上运行它。它实际上也确实有效,但是一旦我弹奏更多/更快的音符,声音就会开始抖动和爆裂,非常糟糕,我必须停止弹奏音符约 2 秒以使抖动消失。我已经在使用外部 USB 声音适配器,这并没有多大帮助。这是处理 MIDI 输入的类:

public class MidiHandler {

public MidiHandler() {
MidiDevice device;
MidiDevice.Info[] infos = MidiSystem.getMidiDeviceInfo();
for (int i = 0; i < infos.length; i++) {
try {
device = MidiSystem.getMidiDevice(infos[i]);
// does the device have any transmitters?
// if it does, add it to the device list
System.out.println(infos[i]);

// get all transmitters
List<Transmitter> transmitters = device.getTransmitters();
// and for each transmitter

for (int j = 0; j < transmitters.size(); j++) {
// create a new receiver
transmitters.get(j).setReceiver(
// using my own MidiInputReceiver
new MidiInputReceiver(device.getDeviceInfo()
.toString()));
}

Transmitter trans = device.getTransmitter();
trans.setReceiver(new MidiInputReceiver(device.getDeviceInfo()
.toString()));

// open each device
device.open();
// if code gets this far without throwing an exception
// print a success message
} catch (MidiUnavailableException e) {
}
}

}

// tried to write my own class. I thought the send method handles an
// MidiEvents sent to it
public class MidiInputReceiver implements Receiver {
Synthesizer synth;
MidiChannel[] mc;
Instrument[] instr;
int instrument;
int channel;



public MidiInputReceiver(String name) {
try
{
patcher p = new patcher();
this.instrument = p.getInstrument();
this.channel = p.getChannel();
this.synth = MidiSystem.getSynthesizer();
this.synth.open();
this.mc = synth.getChannels();
instr = synth.getDefaultSoundbank().getInstruments();
this.synth.loadInstrument(instr[1]);
mc[this.channel].programChange(0, this.instrument);
System.out.println(this.channel + ", " + this.instrument);

}
catch (MidiUnavailableException e)
{
e.printStackTrace();
System.exit(1);
}
}

public void send(MidiMessage msg, long timeStamp) {
/*
* Use to display midi message
*
for(int i = 0; i < msg.getMessage().length; i++) {
System.out.print("[" + msg.getMessage()[i] + "] ");

}
System.out.println();
*/
if (msg.getMessage()[0] == -112) {
mc[this.channel].noteOn(msg.getMessage()[1], msg.getMessage()[2]+1000);
}

if (msg.getMessage()[0] == -128) {
mc[this.channel].noteOff(msg.getMessage()[1], msg.getMessage()[2]+1000);
}

}

public void close() {
}
}
}

这是由于 Pi 的硬件限制,还是我可以采取任何措施?

最佳答案

如果您有更新 MIDI 检索/声音输出的任何循环,也许可以尝试在其中进行线程 hibernate ,以便让操作系统有时间做一些事情?除此之外,不确定。由于某些原因,原始 Raspberry Pi 上的 USB 不是很好(很多错误,性能低下——但这些在较新的 Linux/固件中得到了一定程度的修复)。如果可以访问,您可能还需要修改采样率以匹配当前声音输出的理想设置(采样率不匹配意味着更多转换)。 Java 可能会尝试使用理想值作为默认值,但可能会被操作系统误报?

关于java - 树莓派上的 Midi 输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29630367/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com