Web 音频 API
's
MediaStreamAudioSourceNode()
constructor creates and returns a new
MediaStreamAudioSourceNode
object which uses the first audio track of a given
MediaStream
as its source.
注意:
Another way to create a
MediaStreamAudioSourceNode
is to call the
AudioContext.createMediaStreamSource()
method, specifying the stream from which you want to obtain audio.
audioSourceNode = new MediaStreamAudioSourceNode(context, options);
context
AudioContext
representing the audio context you want the node to be associated with.
选项
A
MediaStreamAudioSourceOptions
object defining the properties you want the
MediaStreamAudioSourceNode
to have:
mediaStream
MediaStream
from which to obtain audio for the node.
新的
MediaStreamAudioSourceNode
object representing the audio node whose media is obtained from the specified source stream.
InvalidStateError
MediaStream
doesn't have any audio tracks.
此范例使用
getUserMedia()
to obtain access to the user's camera, then creates a new
MediaStreamAudioSourceNode
从其
MediaStream
.
// define variables
var audioCtx = new (window.AudioContext || window.webkitAudioContext)();
// getUserMedia block - grab stream
// put it into a MediaStreamAudioSourceNode
if (navigator.mediaDevices.getUserMedia) {
navigator.mediaDevices.getUserMedia (
// constraints: audio and video for this app
{
audio: true,
video: false
}).then(function(stream) {
var options = {
mediaStream : stream
}
var source = new MediaStreamAudioSourceNode(audioCtx, options);
source.connect(audioCtx.destination);
}).catch(function(err) {
console.log('The following gUM error occured: ' + err);
});
} else {
console.log('new getUserMedia not supported on your browser!');
}
| 规范 | 状态 | 注释 |
|---|---|---|
|
Web 音频 API
The definition of 'MediaStreamAudioSourceNode()' in that specification. |
工作草案 |
| 桌面 | 移动 | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
MediaStreamAudioSourceNode()
构造函数
|
Chrome
55
|
Edge ≤79 | Firefox 53 | IE No | Opera 42 | Safari ? |
WebView Android
55
|
Chrome Android
55
|
Firefox Android 53 | Opera Android 42 | Safari iOS ? |
Samsung Internet Android
6.0
|
完整支持
不支持
兼容性未知
见实现注意事项。
MediaStreamAudioSourceNode
MediaStreamAudioSourceNode()
AnalyserNode
AudioBuffer
AudioBufferSourceNode
AudioContext
AudioContextOptions
AudioDestinationNode
AudioListener
AudioNode
AudioNodeOptions
AudioParam
AudioProcessingEvent
AudioScheduledSourceNode
AudioWorklet
AudioWorkletGlobalScope
AudioWorkletNode
AudioWorkletProcessor
BaseAudioContext
BiquadFilterNode
ChannelMergerNode
ChannelSplitterNode
ConstantSourceNode
ConvolverNode
DelayNode
DynamicsCompressorNode
GainNode
IIRFilterNode
MediaElementAudioSourceNode
MediaStreamAudioDestinationNode
OfflineAudioCompletionEvent
OfflineAudioContext
OscillatorNode
PannerNode
PeriodicWave
StereoPannerNode
WaveShaperNode