This page is Ready to Use

Notice: The WebPlatform project, supported by various stewards between 2012 and 2015, has been discontinued. This site is now available on github.

createAnalyser

Summary

Creates an AnalyserNode.

Method of apis/webaudio/AudioContextapis/webaudio/AudioContext

Syntax

var  = AudioContext.createAnalyser();

Return Value

Returns an object of type

AnalyserNode

Examples

var audioCtx = new AudioContext();
var analyser = audioCtx.createAnalyser();

Related specifications

Web Audio API
W3C Editor’s Draft