フィードバック遅延を使用してコードを実行しようとするたびに、Chrome ブラウザーがクラッシュし、
「ああ、スナップ!
この Web ページの表示中に問題が発生しました。続行するには、リロードするか、別のページに移動してください。」
私のコードはこの種の構造を使用しています:
//Create any kind of input (only to test if it works or not);
var oscillator = context.createOscillator();
//Create the delay node and the gain node used on the feedback
var delayNode = context.createDelay();
var feedback = context.createGain();
//Setting the feedback gain
feedback.gain.value = 0.5;
//Make the connections
oscillator.connect(context.destination);
oscillator.connect(delayNode);
delayNode.connect(feedback);
feedback.connect(delayNode);
delayNode.connect(context.destination);//This is where it crashes