How to make a song play at gradually increasing volume?

This section is now closed.
Forum rules
Audacity 1.3.x is now obsolete. Please use the current Audacity 2.1.x version.

Mac 0S X 10.3 and earlier are no longer supported but you can download legacy versions of Audacity for those systems HERE.
shroud
Posts: 53
Joined: Tue May 12, 2009 6:53 pm
Operating System: Please select

Re: How to make a song play at gradually increasing volume?

Post by shroud » Mon Jul 27, 2009 3:23 pm

How do you find or download BOM helper?

steve
Site Admin
Posts: 81627
Joined: Sat Dec 01, 2007 11:43 am
Operating System: Linux *buntu

Re: How to make a song play at gradually increasing volume?

Post by steve » Mon Jul 27, 2009 3:59 pm

I don't know about the BOM helper, but if you are having trouble opening the Zip file, here's the code:

Code: Select all

;nyquist plug-in
;version 1
;type process
;categories "http://lv2plug.in/ns/lv2core#MixerPlugin"
;name "Fade by dB"
;action "Applying Fade..."
;info "Fade by dBnBy Steve DaultonnnUse positive values to fade in and negative values to fade out.nnFor support with this plug-in and more Audacity resources,nplease visit http://audacity.easyspacepro.com."

;control fade "Fade by" real "dB" 12 -96 96

(if (>= fade 0.0)
(mult s (pwlv (db-to-linear (mult -1 fade)) 1.0 1.0))
(mult s (pwlv 1.0 1.0 (db-to-linear fade))))
Copy and paste the code into a plain text file, and name the file "ESP_fade_by_dB.ny" (without quotes).
Put the file into the Audacity plug-ins folder and restart Audacity.
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)

shroud
Posts: 53
Joined: Tue May 12, 2009 6:53 pm
Operating System: Please select

Re: How to make a song play at gradually increasing volume?

Post by shroud » Mon Jul 27, 2009 9:17 pm

How do u find the Audacity plug-in folder?

steve
Site Admin
Posts: 81627
Joined: Sat Dec 01, 2007 11:43 am
Operating System: Linux *buntu

Re: How to make a song play at gradually increasing volume?

Post by steve » Tue Jul 28, 2009 12:17 am

According to the Audacity documentation (not being a Mac user myself), on Mac OS X, it is usually under "Applications."
Mac Hard Disk > Applications

http://wiki.audacityteam.org/index.php? ... t_Plug-ins
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)

Locked