定序器接收器时间戳始终输出 -1
Posted
技术标签:
【中文标题】定序器接收器时间戳始终输出 -1【英文标题】:Sequencer receiver timestamp always outputs -1 【发布时间】:2019-02-17 06:30:41 【问题描述】:我正在尝试使用接收器从正在读取 midi 的音序器输出时间戳。当我尝试将时间戳输出到控制台时,它输出-1。 运行 midi 的代码:
public class MidiReadAndPlay
public static Receiver synthRcvr = new CustomReceiver();
public static Transmitter seqTrans;
public static Sequencer sequencer;
public static Sequence sequence;
public static Synthesizer synth;
public static void main(String[] args) throws Exception
sequencer = MidiSystem.getSequencer();
sequence = MidiSystem.getSequence(new File("File.mid"));
seqTrans = sequencer.getTransmitter();
seqTrans.setReceiver(synthRcvr);
sequencer.open();
sequencer.setSequence(sequence);
sequencer.start();
收货人代码:
public class CustomReceiver implements Receiver
public CustomReceiver()
public static final int NOTE_ON = 0x90;
public static final int NOTE_OFF = 0x80;
public static final String[] NOTE_NAMES = "C", "C#", "D", "D#", "E", "F", "F#", "G", "G#", "A", "A#", "B";
@Override
public void send(MidiMessage message, long timeStamp)
System.out.println(timeStamp);
if (message instanceof ShortMessage)
ShortMessage sm = (ShortMessage) message;
System.out.print("Channel: " + sm.getChannel() + " ");
if (sm.getCommand() == NOTE_ON)
int key = sm.getData1();
int octave = (key / 12)-1;
int note = key % 12;
String noteName = NOTE_NAMES[note];
int velocity = sm.getData2();
System.out.println("Note on, " + noteName + octave + " key=" + key + " velocity: " + velocity);
else if (sm.getCommand() == NOTE_OFF)
int key = sm.getData1();
int octave = (key / 12)-1;
int note = key % 12;
String noteName = NOTE_NAMES[note];
int velocity = sm.getData2();
System.out.println("Note off, " + noteName + octave + " key=" + key + " velocity: " + velocity);
else
System.out.println("Command:" + sm.getCommand());
else
System.out.println("Other message: " + message.getClass());
@Override
public void close()
send 方法应该输出时间戳,但它没有。它只输出-1。有没有办法解决这个问题或者我做错了什么?我正在尝试获取播放音符的时间戳。 谢谢。
编辑
我提出了这个解决方案,但它并不总是有效。
int milliseconds = Math.toIntExact(MidiReadAndPlay.sequencer.getMicrosecondPosition()) / 1000;
int ppq = MidiReadAndPlay.sequence.getResolution();
int bpm = Math.round(MidiReadAndPlay.sequencer.getTempoInBPM());
int msPerTick = 60000 / (bpm * ppq);
int tick = milliseconds/msPerTick;
System.out.println("milliseconds: " + milliseconds + ", ppq: " + ppq + ", bpm: " + bpm + ", msPerTick: " + msPerTick + ", tick: " + tick);
有时刻度非常大,通常为数万。 对于一个midi,ppq是480,bpm是120。我认为公式可能有错误。
编辑 2
我找到了这个函数来查找tick,我觉得这比我上面写的解决方案要好。
int tick = Math.toIntExact(sequencer.getTickPosition());
我觉得它输出的滴答声很高,因为 3 分钟的 midi 以 176000 滴答声结束。应该这么高吧?
【问题讨论】:
试试setMasterSyncMode()
。
@CL。什么同步模式?
@CL。我试过SyncMode.INTERNAL_CLOCK
、SyncMode.MIDI_SYNC
、SyncMode.MIDI_TIME_CODE
和SyncMode.NO_SYNC
,但都没有奏效。
我不知道这个 - 它说如果不支持时间戳然后 -1 - 你想获得播放音符的时间吗?您可以获得时间分辨率和滴答声 - 不确定术语“时间戳”是什么意思
@gpasch 有没有其他方法可以得到音符的播放时间?喜欢从音序器?
【参考方案1】:
发送函数中的时间戳不起作用。所以我就用了:
int tick = Math.toIntExact(sequencer.getTickPosition());
效果很好
【讨论】:
以上是关于定序器接收器时间戳始终输出 -1的主要内容,如果未能解决你的问题,请参考以下文章
[Azure]Azure SQL Database 资料库定序
大跌眼镜:macOS 和 iOS 的 MIDI 音序精确性和稳定性远超 MIDI 音序器硬件