Skip to content

Commit

Permalink
typo and nitpick
Browse files Browse the repository at this point in the history
  • Loading branch information
magnetophon committed May 5, 2016
1 parent 52793ed commit 2386ac3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ A library of compressor building blocks, compressors and some general utilities.
- Can work as a hard limiter, and beyond.
- Adjustable link, from multi mono to fully linked.
- Adjustable knee
- True RMS detector with highly optimized algorithm
- True RMS detector with variable RMS-time
and highly optimized algorithm
- Feed forward, feed back, and various hybrids available
- attack/release switchable to before or after the gain-calculator,
turning it from a linear return-to-zero detector
Expand Down
7 changes: 2 additions & 5 deletions compressors.lib
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import("effect.lib");
// A library of compressor building blocks, compressors and some general utilities.
// The four most interesting examples:
// If wanted I can make demo versions, with tooltips that are more appropriate for each model.

// process =
// FFcompressor_N_chan(strength,threshold,attack,release,knee,prePost,link,meter,2);
// FBFFcompressor_N_chan(strength,threshold,attack,release,knee,prePost,link,FBFF,meter,2);
Expand Down Expand Up @@ -266,10 +267,6 @@ compressor_N_chan_demo(N) =
[tooltip: When the signal level exceeds the Threshold (in dB), its level is compressed according to the Strength]",
0, maxGR, 10, 0.1));

thresholdRMS = ctl_group(hslider("[1] Threshold RMS [unit:dB] [style:knob]
[tooltip: When the signal level exceeds the Threshold (in dB), its level is compressed according to the Strength]",
0, maxGR, 10, 0.1));

knee = ctl_group(hslider("[2] Knee [unit:dB] [style:knob]
[tooltip: soft knee amount in dB]",
6, 0, 30, 0.1));
Expand Down Expand Up @@ -302,7 +299,7 @@ compressor_N_chan_demo(N) =
and it's knee is half that of the compressor]", x));

thresholdLim = lim_group(hslider("[9] Threshold [unit:dB] [style:knob]
[tooltip: The signal leveli never exceeds this threshold]",
[tooltip: The signal level never exceeds this threshold]",
0, -30, 10, 0.1));

makeupgain = comp_group(hslider("[6] Makeup Gain [unit:dB]
Expand Down

0 comments on commit 2386ac3

Please sign in to comment.