Kippykip / Kippykip-2009

Resources typically used for making Kippykip-2009 video effects.
9 stars 1 forks source link

Update audacity_bitcrush.ny.txt #1

Open SteveDaulton opened 2 years ago

SteveDaulton commented 2 years ago

To run audacity_bitcrush.ny in recent versions of Audacity, you need to add a line at the top of the script: ;version 3

The script will still work in old versions of Audacity. (I'm the original author of that script)

SteveDaulton commented 2 years ago

A better, shorter, faster, and up to date version:

;version 4
(setq factor 4)

(control-srate-abs *sound-srate* 
  (let ((sig2 (mult (/ *sound-srate*)
                    (quantize (pwl factor len factor) 1))))
    (multichan-expand #'snd-compose *track* sig2)))
Kippykip commented 2 years ago

Wow awesome! I'll have a play around with this!