Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用MIDI.js播放 MIDI 文件。我想根据用户输入动态调整速度。有没有办法例如。将事件注入setTempoMIDI 流?
setTempo
另外,我可能想忽略setTempoMIDI 文件本身中的任何事件。
我需要分叉播放器代码来实现这些吗?
MIDI.Player.BPM = 60;在加载 midi 文件之前,您需要在某处进行设置。在源码中找到。
MIDI.Player.BPM = 60;
因此,这可能意味着您无法在文件播放期间更改 BPM。