PeriodicWave()
constructor of the
Web 音频 API
creates a new
PeriodicWave
对象实例。
var myWave = new PeriodicWave(context, options);
Inherits parameters from the
AudioNodeOptions
dictionary
.
context
BaseAudioContext
representing the audio context you want the node to be associated with.
选项
可选
PeriodicWaveOptions
dictionary object defining the properties you want the
PeriodicWave
to have (It also inherits the options defined in the
PeriodicWaveConstraints
dictionary.):
real
: A
Float32Array
containing the cosine terms that you want to use to form the wave (equivalent to the
real
参数对于
AudioContext.createPeriodicWave
).
imag
: A
Float32Array
containing the sine terms that you want to use to form the wave (equivalent to the
imag
参数对于
AudioContext.createPeriodicWave
).
新的
PeriodicWave
对象实例。
var real = new Float32Array(2);
var imag = new Float32Array(2);
var ac = new AudioContext();
real[0] = 0;
imag[0] = 0;
real[1] = 1;
imag[1] = 0;
var options = {
real : real,
imag : imag,
disableNormalization : false
}
var wave = new PeriodicWave(ac, options);
| 规范 | 状态 | 注释 |
|---|---|---|
|
Web 音频 API
The definition of 'PeriodicWave' in that specification. |
工作草案 |
| 桌面 | 移动 | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
PeriodicWave()
构造函数
|
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
|
完整支持
不支持
兼容性未知
见实现注意事项。
PeriodicWave
PeriodicWave()
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
MediaStreamAudioSourceNode
OfflineAudioCompletionEvent
OfflineAudioContext
OscillatorNode
PannerNode
StereoPannerNode
WaveShaperNode