DynamicsCompressorNode - Web API 接口参考 编辑

DynamicsCompressorNode 接口提供了一个压缩效果器,用以降低信号中最响部分的音量,来协助避免在多个声音同时播放并叠加在一起的时候产生的削波失真。通常用于音乐创作和游戏音效中。DynamicsCompressorNode 是一个 AudioNode ,只有一路输入和一路输出,使用 AudioContext.createDynamicsCompressor() 方法创建。

Number of inputs1
Number of outputs1
Channel count mode"explicit"
Channel count2
Channel interpretation"speakers"

构造方法

DynamicsCompressorNode()
创建一个新的 DynamicsCompressorNode 对象实例。

属性

由父类 AudioNode 派生

DynamicsCompressorNode.threshold 只读
比例系数 AudioParam 型。分贝高于此值时,将会进行压缩。
DynamicsCompressorNode.knee 只读
比例系数 AudioParam 型。当超出 threshold 设置的值之后,曲线在哪个点开始朝着 ratio 设置的部分平滑变换。
DynamicsCompressorNode.ratio 只读
比例系数 AudioParam 型。输入增益变化多少来产生 1 dB 的输出。
DynamicsCompressorNode.reduction 只读
float 型。表示当前压缩器使用的增益压缩值。
DynamicsCompressorNode.attack 只读
比例系数 AudioParam 型。降低增益 10 dB 的时间(单位为秒)。
DynamicsCompressorNode.release 只读
比例系数 AudioParam 型。提升增益 10 dB 的时间(单位为秒)。

方法

没有自定义的方法,继承父类 AudioNode 中的方法。

示例

The below code demonstrates a simple usage of createDynamicsCompressor() to add compression to an audio track. For a more complete example, have a look at our basic Compressor example (view the source code).

// Create a MediaElementAudioSourceNode
// Feed the HTMLMediaElement into it
var source = audioCtx.createMediaElementSource(myAudio);

// Create a compressor node
var compressor = audioCtx.createDynamicsCompressor();
compressor.threshold.setValueAtTime(-50, audioCtx.currentTime);
compressor.knee.setValueAtTime(40, audioCtx.currentTime);
compressor.ratio.setValueAtTime(12, audioCtx.currentTime);
compressor.attack.setValueAtTime(0, audioCtx.currentTime);
compressor.release.setValueAtTime(0.25, audioCtx.currentTime);

// connect the AudioBufferSourceNode to the destination
source.connect(audioCtx.destination);

button.onclick = function() {
  var active = button.getAttribute('data-active');
  if(active == 'false') {
    button.setAttribute('data-active', 'true');
    button.innerHTML = 'Remove compression';

    source.disconnect(audioCtx.destination);
    source.connect(compressor);
    compressor.connect(audioCtx.destination);
  } else if(active == 'true') {
    button.setAttribute('data-active', 'false');
    button.innerHTML = 'Add compression';

    source.disconnect(compressor);
    compressor.disconnect(audioCtx.destination);
    source.connect(audioCtx.destination);
  }
}

Specifications

SpecificationStatusComment
Web Audio API
DynamicsCompressorNode
Working Draft 

浏览器兼容性

BCD tables only load in the browser

The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.

参见

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:54 次

字数:6741

最后编辑:8年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文