Skip to content

Commit

Permalink
update master limiter - sharp knee
Browse files Browse the repository at this point in the history
  • Loading branch information
therewasaguy committed Jun 26, 2018
1 parent 0a14566 commit 9607a54
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/master.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ define(function () {

//put a hard limiter on the output
this.limiter = audiocontext.createDynamicsCompressor();
this.limiter.threshold.value = 0;
this.limiter.threshold.value = -3;
this.limiter.ratio.value = 20;
this.limiter.knee.value = 1;

this.audiocontext = audiocontext;

Expand Down

0 comments on commit 9607a54

Please sign in to comment.