gpt4 book ai didi

javascript - AudioContext:振荡器 - 了解所有声音何时播放

转载 作者:行者123 更新时间:2023-12-03 03:32:56 29 4
gpt4 key购买 nike

我正在使用this javascript api (miniMusic)。我能够创建音乐,然后导出 javascript 代码。我也能够运行它。

我希望能够知道我的音乐何时结束,以便我可以再次播放它并控制它。

with(new AudioContext)
for(i in D=[12,,,13,,,18,,,,,,12,,,13,,,18,,,,,,12,,,13,,,18,,,15,,,12,,,8,,,12,,,13]) {
with(createOscillator())
if(D[i]) {
connect(destination)
frequency.value=800*1.06**(13-D[i]),
type='square',
start(i*.1),
stop(i*.1+.1)
}
}
// -> onEnd = function (...) {}

循环立即运行,因此我无法使用索引来定位音乐正在播放的音符。有人可以帮助我吗?

最佳答案

振荡器有 onend函数在音调结束时调用,但是您链接的 api 为每个音符创建一个新的振荡器,您可以计算演奏的音符数,然后在音符数等于曲调中的音符数时循环。

示例

with(new AudioContext)
for (i in D = [12, , , 13, , , 18, , , , , , 12, , , 13, , , 18, , , , , , 12, , , 13, , , 18, , , 15, , , 12, , , 8, , , 12, , , 13]) {
with(createOscillator())
if (D[i]) {
onended = function() {
console.log('Note has stopped playing');
}
connect(destination)
frequency.value = 800 * 1.06 ** (13 - D[i]),
type = 'square',
start(i * .1),
stop(i * .1 + .1)
}
}

希望这有帮助!

关于javascript - AudioContext:振荡器 - 了解所有声音何时播放,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46002960/

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