AudioEffectLimiter

已棄用: Use AudioEffectHardLimiter instead.

繼承: AudioEffect < Resource < RefCounted < Object

為音訊匯流排新增軟削波限制器效果。

說明

限制器類似壓縮器,但較固定,目的在阻止音量超過門檻。建議於 Master 匯流排加入,以降低削波影響。

軟削波會在接近門檻前開始壓低峰值,隨輸入增大而逐漸加強,確保不會越界。

教學

屬性

float

ceiling_db

-0.1

float

soft_clip_db

2.0

float

soft_clip_ratio

10.0

float

threshold_db

0.0


屬性說明

float ceiling_db = -0.1 🔗

  • void set_ceiling_db(value: float)

  • float get_ceiling_db()

波形允許的最大值(dB),可設 -20 至 -0.1。


float soft_clip_db = 2.0 🔗

  • void set_soft_clip_db(value: float)

  • float get_soft_clip_db()

對被限制後的波形加上的增益(dB),可設 0–6。


float soft_clip_ratio = 10.0 🔗

  • void set_soft_clip_ratio(value: float)

  • float get_soft_clip_ratio()

There is currently no description for this property. Please help us by contributing one!


float threshold_db = 0.0 🔗

  • void set_threshold_db(value: float)

  • float get_threshold_db()

限制器開始作用的門檻(dB),可設 -30 至 0。