Skip to content

Commit

Permalink
Master FX for JL2
Browse files Browse the repository at this point in the history
Mastering Chain with several EQs to boost the mid part, since the
spectrum is completly extreme low or high
  • Loading branch information
rukano committed Jul 16, 2016
1 parent e566622 commit 23e7952
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions jonatan_liljedahl_2/jonatan_liljedahl_2.scd
Expand Up @@ -275,4 +275,20 @@
};
};
}.fork(tempoclock);

// Master FX
{
var brightness;
var snd = In.ar(0, 2);
brightness = HPF.ar(snd, 10000, 4.dbamp).tanh;
snd = Compander.ar(snd, snd, 0.9, 1, 1/2, 0.05, 0.2, 1.2).tanh;
snd = snd + LPF.ar(snd, 80, 0.5).tanh;
snd = LeakDC.ar(snd * 0.5);
snd = BHiShelf.ar(snd + (brightness * 0.25), 10000, 0.5, -12);
snd = MidEQ.ar(snd, 800, 2, 4);
snd = MidEQ.ar(snd, 2400, 2, 4);
snd = MidEQ.ar(snd, 120, 0.5, 8);
snd = Compander.ar(snd, snd, 0.9, 1, 0.125, 0.05, 0.5);
ReplaceOut.ar(0, snd);
}.play(addAction:\addToTail);
)

0 comments on commit 23e7952

Please sign in to comment.