ホームページ > 記事 > ウェブフロントエンド > JavaScript/HTML5によるリアルタイムサウンド生成
Web Audio API はオーディオの制御に使用され、オーディオ ソースを選択できるようになります。エフェクトを追加したり、オーディオ ビジュアライゼーションやパンニングなどを作成したりすることもできます。
次のコード スニペットを実行してサウンドを生成してみてください。
// use one context per document. Here we are creating one context for one document. You can create for other documents also var context = new (window.AudioContext || window.webkitAudioContext)(); // oscillator var os = context.createOscillator(); os.type = 'sine'; // sine is the default. So you can also use square, saw tooth, triangle os.frequency.value = 500; // setting the frequency Hz os.connect(context.destination); // connecting to the destination // starting the oscillator os.start(); os.stop(context.currentTime + 5); // stop 5 seconds after the current time
以上がJavaScript/HTML5によるリアルタイムサウンド生成の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。