Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

AudioContext.createOscillator()

AudioContextインターフェースのcreateOscillator()メソッドは、周期的な波形を発生源であるOscillatorNodeを生成します。これは基礎的な音源です。

構文

var audioCtx = new AudioContext();
var oscillator = audioCtx.createOscillator();

戻り値

OscillatorNode

次の例はオシレーターノードを生成する基礎的な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

参考

ドキュメントのタグと貢献者

 このページの貢献者: maruhiro
 最終更新者: maruhiro,