Search found 3 matches
- Thu Sep 06, 2018 3:39 pm
- Forum: New Plug-Ins
- Topic: Create Fades on Clip Edges
- Replies: 13
- Views: 3620
Re: Create Fades on Clip Edges
;version 4 (setq fade-length 0.005) (setq dur (get-duration 1)) (abs-env (mult *track* (pwlv 1 (- dur fade-length) 1 dur 0))) Steve, you're awesome! I think I better understand the coding now as well.. probably flawed but, modifying the breakpoints (jump from end of the file to 5 ms before the end ...
- Thu Sep 06, 2018 12:56 pm
- Forum: New Plug-Ins
- Topic: Create Fades on Clip Edges
- Replies: 13
- Views: 3620
Re: Create Fades on Clip Edges
I would like to simplify it even further and have working code for just the fade-out part. That's this bit: ;version 3 (setq fade-length 0.005) (setq dur (get-duration 1)) (abs-env (control-srate-abs *sound-srate* (let* ((fl fade-length) (env (pwlv 0 fl 1 (- dur fl) 1 dur 0))) (mult s env)))) Note ...
- Wed Sep 05, 2018 9:59 pm
- Forum: New Plug-Ins
- Topic: Create Fades on Clip Edges
- Replies: 13
- Views: 3620
Re: Create Fades on Clip Edges
.... Reference: http://wiki.audacityteam.org/wiki/Nyquist_Plug-ins_Reference To turn this code into a plugin we need to add the "plugin header". At the time of writing, the release version of Audacity is 2.0.6, so we shall write this as a "version 3" plugin (the most recent vers...