home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 February / PCWorld_2008-02_cd.bin / audio-video / reaper / reaper2028-install.exe / Effects / SStillwell / louderizer_lpf < prev    next >
Text File  |  2007-12-03  |  3KB  |  85 lines

  1. // Copyright 2006, Thomas Scott Stillwell
  2. // All rights reserved.
  3. //
  4. //Redistribution and use in source and binary forms, with or without modification, are permitted 
  5. //provided that the following conditions are met:
  6. //
  7. //Redistributions of source code must retain the above copyright notice, this list of conditions 
  8. //and the following disclaimer. 
  9. //
  10. //Redistributions in binary form must reproduce the above copyright notice, this list of conditions 
  11. //and the following disclaimer in the documentation and/or other materials provided with the distribution. 
  12. //
  13. //The name of Thomas Scott Stillwell may not be used to endorse or 
  14. //promote products derived from this software without specific prior written permission. 
  15. //
  16. //THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR 
  17. //IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND 
  18. //FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS 
  19. //BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 
  20. //(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 
  21. //PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 
  22. //STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 
  23. //THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  24. desc:louderizer - makes it louder, duh...
  25.  
  26. slider1:0<0,100,0.1>mix%
  27. slider2:0<0,100,0.1>drive%
  28. slider3:22000<1,22000>lpf frequency (Hz)
  29. slider4:0.2<0,1>size(1/Q) (0=sharp/resonant, 1=dull)
  30. slider5:1<0,1,1>filter pre/post drive (0=pre)
  31.  
  32. @slider
  33.  
  34.   mix=slider1 / 100;
  35.   drive=slider2 / 100;
  36.   freq=slider3;
  37.   size=slider4;
  38.   prepost=slider5;
  39.  
  40.   damp=0.01+size*20;
  41.   c = 1/tan($pi*freq/srate);
  42.   fk = 1 / (1 + c*(c+damp));
  43.   fa1 = 2 * (1 - c*c) * fk;
  44.   fa0 = (1 + c*(c-damp)) * fk;
  45.   oldamp=damp;
  46.  
  47.   mix1 = 1 - mix;
  48.   drive1 = 1 / (1 - (drive / 2));
  49.   drive2 = drive / 2;
  50.  
  51.  
  52. @sample
  53.   
  54.   dry0 = spl0;
  55.   dry1 = spl1;
  56.  
  57.   prepost>0.5 ? (
  58.     wet0 = drive1 * dry0 * (1 - abs(dry0 * drive2));
  59.     wet1 = drive1 * dry1 * (1 - abs(dry1 * drive2)); 
  60.  
  61.     fd0l = (fk*wet0) - (fa1*fd1l) - (fa0*fd2l);
  62.     fd0r = (fk*wet1) - (fa1*fd1r) - (fa0*fd2r);
  63.  
  64.     spl0 = mix1 * dry0 + (mix) * (fd0l + fd1l + fd1l + fd2l);
  65.     spl1 = mix1 * dry1 + (mix) * (fd0r + fd1r + fd1r + fd2r);
  66.   ) : (
  67.     fd0l = (fk*dry0) - (fa1*fd1l) - (fa0*fd2l);
  68.     fd0r = (fk*dry1) - (fa1*fd1r) - (fa0*fd2r);
  69.  
  70.     wet0 = fd0l + fd1l + fd1l + fd2l;
  71.     wet1 = fd0r + fd1r + fd1r + fd2r;
  72.  
  73.     wet0 = drive1 * wet0 * (1 - abs(dry0 * drive2));
  74.     wet1 = drive1 * wet1 * (1 - abs(dry1 * drive2)); 
  75.  
  76.     spl0 = mix1 * dry0 + (mix) * wet0;
  77.     spl1 = mix1 * dry1 + (mix) * wet1;
  78.   );
  79.  
  80.   fd2l = fd1l;
  81.   fd2r = fd1r;
  82.  
  83.   fd1l = fd0l;
  84.   fd1r = fd0r;
  85.