MediaElementAudioSourceNode.MediaElementAudioSourceNode()

我们的志愿者还没有将这篇文章翻译为 中文 (简体)加入我们帮助完成翻译!
您也可以阅读此文章的English (US)版。

The MediaElementAudioSourceNode() constructor creates a new MediaElementAudioSourceNode object instance.

Syntax

var myAudioSource = new MediaElementAudioSourceNode(context, options);

Parameters

context
An AudioContext representing the audio context you want the node to be associated with.
options
A MediaElementAudioSourceOptions dictionary object defining the properties you want the MediaElementAudioSourceNode to have:
  • mediaElement: An HTMLMediaElement that will be used as the source for the audio.

Example

var ac = new AudioContext();
var mediaElement = document.createElement('audio');
var options = {
  mediaElement : mediaElement
}
var myAudioSource = new MediaElementAudioSourceNode(ac, options);

Specifications

Specification Status Comment
Web Audio API
The definition of 'MediaElementAudioSourceNode' in that specification.
Working Draft  

Browser compatibility

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support 55.0 No support No support

42

No support
Feature Android Android Webview Firefox Mobile (Gecko) IE Phone Opera Mobile Safari Mobile Chrome for Android
Basic support No support 55.0 No support No support

42

No support 55.0

文档标签和贡献者