gpt4 book ai didi

Java MIDI - 从钢琴获取数据?

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:32:14 25 4
gpt4 key购买 nike

我继承了一个使用 an old C++ dll to receive MIDI data 的 Java 项目从连接到计算机的钢琴。

现在 Java 已经内置了对 MIDI 设备的支持,我想摆脱遗留的 C++ dll,只使用纯 Java。 Java 是否支持从连接到计算机的钢琴接收数据?我已在 Google 上搜索示例但无济于事。

最佳答案

如果您只想使用 Java (javax.sound.midi.*) 的 MIDI api 进行录音,这很容易完成。这不是复制和粘贴的代码,但它应该可以帮助您开始编写自己的 MIDI 录音机,这实际上很容易。

第一步是定义输入和输出 MidiDevice。因此,首先您必须找到一个 IO 可能性列表,并制作一个 GUI,您可以在其中选择用于 MIDI 录制和播放的输入和输出设备。

Info[] infos = MidiSystem.getMidiDeviceInfo();
for(int i=0;i<infos.length;i++)
{
System.out.println(infos[i].getName() + " - " + infos[i].getDescription());
}

所以有一个 MIDI 设备列表。接下来您要选择一个 MIDI 设备,例如您可以选择 infos 数组中的索引。

MidiDevice inputDevice = MidiSystem.getMidiDevice(infos[x]);
MidiDevice outputDevice = MidiSystem.getMidiDevice(infos[y]);

您还需要指定一些全局变量:定序器、发射器和接收器。

Sequencer sequencer = MidiSystem.getSequencer();
Transmitter transmitter;
Receiver receiver;

现在有一个您要使用的录制按钮。

// Open a connection to your input device
inputDevice.open();
// Open a connection to the default sequencer (as specified by MidiSystem)
sequencer.open();
// Get the transmitter class from your input device
transmitter = inputDevice.getTransmitter();
// Get the receiver class from your sequencer
receiver = sequencer.getReceiver();
// Bind the transmitter to the receiver so the receiver gets input from the transmitter
transmitter.setReceiver(receiver);

// Create a new sequence
Sequence seq = new Sequence(Sequence.PPQ, 24);
// And of course a track to record the input on
Track currentTrack = seq.createTrack();
// Do some sequencer settings
sequencer.setSequence(seq);
sequencer.setTickPosition(0);
sequencer.recordEnable(currentTrack, -1);
// And start recording
sequencer.startRecording();

注意,此代码可能会抛出 MidiUnavailableExceptions,您应该对在 finally 语句中打开的所有内容调用关闭方法。

但这只是代码应该是什么样子的核心。只要您调用方法 sequencer.startRecording(),它就会将所有内容记录到序列 seq

然后您想要停止录音,并能够将序列作为 MIDI 保存到文件中,或者进行回放。例如,这可能是您按下“停止录制”按钮或其他内容时的代码。

// Stop recording
if(sequencer.isRecording())
{
// Tell sequencer to stop recording
sequencer.stopRecording();

// Retrieve the sequence containing the stuff you played on the MIDI instrument
Sequence tmp = sequencer.getSequence();

// Save to file
MidiSystem.write(tmp, 0, new File("MyMidiFile.mid"));
}

Track 类(一个序列可以有多个轨道)也包含实际的输入数据,您可以通过 get 方法轻松访问这些数据。 Track 类由 MidiEvents 组成。例如轨道是:

MidiEvent 0: The C key is pressed
MidiEvent 1: The D key is pressed
MidiEvent 2: The C key of MidiEvent 0 is released
MidiEvent 3: The sustain pedal is pressed
etc...

并且每个 MidiEvent 都有一个特定的时间戳,以 MIDI Ticks 表示,因此您可以通过增加或减少每秒的节拍数轻松改变速度。

这里最难的问题是 MidiEvents 是用字节码表示的,因此您必须使用引用字节码表,它会告诉您什么字节代表什么 Action 。这应该让你开始:http://www.onicos.com/staff/iz/formats/midi-event.html

关于Java MIDI - 从钢琴获取数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1485307/

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