AudioContext
インターフェースのcreateOscillator()
メソッドは、周期的な波形を発生源であるOscillatorNode
を生成します。これは基礎的な音源です。
構文
var audioCtx = new AudioContext(); var oscillator = audioCtx.createOscillator();
戻り値
例
次の例はオシレーターノードを生成する基礎的なAudioContextの使い方を示しています。例と情報の応用は、Voice-change-O-maticデモ(ソースコード)をチェックしてください。また、OscillatorNode
にはより詳細な情報があります。
// webオーディオAPIコンテキストを生成する var audioCtx = new (window.AudioContext || window.webkitAudioContext)(); // オシレーターノードを生成する var oscillator = audioCtx.createOscillator(); oscillator.type = 'square'; oscillator.frequency.value = 3000; // 値はHz(ヘルツ) oscillator.start();
仕様
Specification | Status | Comment |
---|---|---|
Web Audio API The definition of 'createOscillator' in that specification. |
草案 |
ブラウザ互換性
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | 10.0webkit | 25.0 (25.0) | 未サポート | 15.0webkit 22 (unprefixed) |
6.0webkit |
Feature | Android | Firefox Mobile (Gecko) | Firefox OS | IE Mobile | Opera Mobile | Safari Mobile | Chrome for Android |
---|---|---|---|---|---|---|---|
Basic support | ? | 26.0 | 1.2 | ? | ? | ? | 33.0 |