ウェブオーディオAPIサウンドにイベントリスナーを追加することはできますか?私は、サウンドが完了しても何も見つけられないときのためのイベントやトリガーを探していました。ここで私はそれがうまくいくと想像している方法です:Web Audio API、イベント?
soundSource = context.createBufferSource();
soundBuffer = context.createBuffer(audioData, true);
soundSource.buffer = soundBuffer;
soundSource.connect(volumeNode);
soundSource.addEventListener('ended', function(e){
console.log("ended", "", e);
}, false);
soundSource.noteOn(context.currentTime);