amplification of -1 so I can gently affect louder spikes in my narration.
-1dB? That may give you a warm, fuzzy feeling, but nobody can hear 1dB. Are you trying to preempt peak problems in ACX audiobook narration?
I’d be investigating Effect > Limiter. You can get limiter to gracefully wack off all the sticking-up parts in a narration without affecting anything else noticeably and without being able to hear it. And without needing to crank through the performance word by word by hand.
But to specifically answer you, you can create a chain which is Audacity’s version of Batch.
If you apply -1 dB once in Amplify, then until you use another effect, COMMAND + R (Repeat Last Effect) will amplify by -1 dB.
This only lasts for the Audacity session. When you restart Audacity, you’d have to apply Amplify manually again first time before you can use COMMAND + R.
This plug-in will amplify by 1 dB: onedb.ny (216 Bytes)
Instructions for installing: http://manual.audacityteam.org/man/effect_menu.html#nyquist_effects
Note that in the Plug-in manager, before the plug-in has been installed, the effect is listed as “onedb” (in the “New” section). Once it has been installed, it is listed as “+1 dB”.
Koz. Chain seems to only offer changes to an entire file. Am I missing something? Also: And without needing to crank through the performance word by word by hand. How do I edit without listening to the file? I’m all for saving time if you have suggestions.
Gale, CMD+R only repeats the most recently used effect. So if Amplify was the only thing I was doing that would work great. But it’s not.
Steve, do you know of a plugin that does the EXACT OPPOSITE of +1db? I’m searching the forums now.
I’d be investigating Effect > Limiter. You can get limiter to gracefully wack off all the sticking-up parts in a narration without affecting anything else noticeably and without being able to hear it. And without needing to crank through the performance word by word by hand.
You seem to have sailed gracefully over the first part of that sentence. Did Effect > Limiter not do something you needed done?
You also sailed right over a following posting:
Are you trying to preempt peak problems in ACX audiobook narration?
So I think this would be a grand place to find out exactly what the job is. There is the possibility you may be doing a conventional job for which we have existing, automated tools, but manually, in the most painful way possible.
The onedb.ny file is a Nyquist plug-in. which is really just a plain text file with instructions for Audacity and Nyquist (“Nyquist” is an audio programming language that is included in Audacity). The file can be opened and edited in any plain text editor (for example NotePad or NotePad++)
This is the line that does the work:
(mult *track* (db-to-linear 1.0))
track is a special symbol that represents the selected audio. mult is a command that means “multiply”. Multiplying audio by an amount is how digital audio is amplified. db-to-linear is a command to convert a dB value to a linear scale value.
So, for example, if you want an effect that will amplify by -3.5 dB, then the code would be: