我正在尝试对通过 SoundJS 加载和播放的声音应用低通滤波器。
现在我正在尝试这样做:
var audio = createjs.Sound.activePlugin;
var source = audio.context.createBufferSource();
// Create the filter
var filter = audio.context.createBiquadFilter();
// Create the audio graph.
source.connect(filter);
filter.connect(audio.context.destination);
// Create and specify parameters for the low-pass filter.
filter.type = 0; // Low-pass filter. See BiquadFilterNode docs
filter.frequency.value = 440; // Set cutoff to 440 HZ
// Playback the sound.
createjs.Sound.play("Song");
但我运气不太好。有人能指出我正确的方向吗?
谢谢