gpt4 book ai didi

javascript - WebMidi.js 输出为空

转载 作者:行者123 更新时间:2023-12-03 01:35:08 26 4
gpt4 key购买 nike

我正在尝试使用WebMidi.js在浏览器中播放音符。我正在使用下面的代码,该代码主要取自快速入门指南。

<body>
<script src="node_modules/webmidi/webmidi.min.js"></script>
<script defer>
WebMidi.enable(function(err) {
if (err) {
console.log("WebMidi could not be enabled.", err);
} else {
console.log("WebMidi enabled!");
console.log("outputs:", WebMidi.outputs);
}
});
</script>
</body>

当我加载页面时,它说 WebMidi 已启用,但输出数组为空。我怎样才能让包检测我的输出?我在 Mac 上使用 Chrome - 我的软件是最新的。

最佳答案

要使用 MIDI 输出来播放声音,您需要有一个运行虚拟 MIDI 端口的硬件或软件 MIDI 合成器。您可能想改用 AudioContext:

// patch up prefixes
window.AudioContext=window.AudioContext||window.webkitAudioContext;

context = new AudioContext();
if (navigator.requestMIDIAccess)
navigator.requestMIDIAccess().then( onMIDIInit, onMIDIReject );
else
alert("No MIDI support present in your browser. You're gonna have a bad time.")

// set up the basic oscillator chain, muted to begin with.
oscillator = context.createOscillator();
oscillator.frequency.setValueAtTime(110, 0);
envelope = context.createGain();
oscillator.connect(envelope);
envelope.connect(context.destination);
envelope.gain.value = 0.0; // Mute the sound
oscillator.start(0); // Go ahead and start up the oscillator

要生成更复杂的声音,请查看 SoundJS 或其他声音库。

关于javascript - WebMidi.js 输出为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51110657/

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