Skip to content
This repository has been archived by the owner on Jun 9, 2019. It is now read-only.

AudioNode

mohayonao edited this page Jan 27, 2015 · 10 revisions

Object > EventTarget > AudioNode

Properties

  • context: AudioContext readonly
  • numberOfInputs: number readonly
  • numberOfOutputs: number readonly
  • channelCount: number
  • channelCountMode: enum { "max", "clamped-max", "explicit" }
  • channelInterpretation: enum { "speakers", "discrete" }

Methods

Also implements methods from the interface EventTarget.

  • connect(destination: AudioNode, [output:number], [input:number]): void
  • connect(destination: AudioParam, [output:number]): void
  • disconnect([output: number]): void

Test API

  • $name: string readonly
  • $context: AudioContext readonly
  • $inputs: AudioNode[] readonly

References

Clone this wiki locally