I'm looking for a shortcut about the function of the effect NORMALIZE.
in fact, it doesn't appear in the list, located in Preference > Keyboard.
Someone kindly explain to me how to obtain this shortcut.
Thank you in advance.
capog
shortcut
Forum rules
If you require help using Audacity, please post on the forum board relevant to your operating system:
Windows
Mac OS X
GNU/Linux and Unix-like
If you require help using Audacity, please post on the forum board relevant to your operating system:
Windows
Mac OS X
GNU/Linux and Unix-like
-
waxcylinder
- Forum Staff
- Posts: 14585
- Joined: Tue Jul 31, 2007 11:03 am
- Operating System: Windows 10
Re: shortcut
Currently you cannot bind any effects to a keyboard shortcut. This is one of the most popular Feature Requests on the Wiki. Would you like me to add your vote to that request?
Personally I'd give a lot to be able to have shortcuts for fade in/out ...
BTW are you aware that Audacity's Normalize operates independently on each track in a stereo pair - this means that if your equipment is well balanced than using Normalize can change/damage the stereo image. I prefer to use the Amplify effect.
WC
Personally I'd give a lot to be able to have shortcuts for fade in/out ...
BTW are you aware that Audacity's Normalize operates independently on each track in a stereo pair - this means that if your equipment is well balanced than using Normalize can change/damage the stereo image. I prefer to use the Amplify effect.
WC
________________________________________FOR INSTANT HELP: (Click on Link below)
* * * * * FAQ * * * * * Tutorials * * * * * Audacity Manual * * * * *
* * * * * FAQ * * * * * Tutorials * * * * * Audacity Manual * * * * *
Re: shortcut
Probably does not really help much so may be of academic interest only.waxcylinder wrote: Personally I'd give a lot to be able to have shortcuts for fade in/out ...
You can create a "Chain" command for the Fade effect, then create a shortcut for "Apply Chain", (but you still need to select the chain that you wish to run).
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)
-
waxcylinder
- Forum Staff
- Posts: 14585
- Joined: Tue Jul 31, 2007 11:03 am
- Operating System: Windows 10
Re: shortcut
Yes academically interesting but not what I really need for LP transcriptions and chop-outs from FM radio broadcasts where I need to control lots of separate fades (in and out) for each "song" in the project - and where the length of the fades has to be judged and set individually for each track.
WC
WC
________________________________________FOR INSTANT HELP: (Click on Link below)
* * * * * FAQ * * * * * Tutorials * * * * * Audacity Manual * * * * *
* * * * * FAQ * * * * * Tutorials * * * * * Audacity Manual * * * * *
Re: shortcut
What is "a lot" <grin>? Since you have already given so much, I would be happy to make a custom Audacity for you which has this, but...waxcylinder wrote: Personally I'd give a lot to be able to have shortcuts for fade in/out ...
WC
It is easy to write a few lines of code (a function) which calls an effect (you must be careful not to add new effects later without verifying the "type & index") then put the new function into the menu and give that new function a shortcut key. I do this a lot. The only problem is that you need to be willing to trust the person doing the coding/compiling (maybe you could talk one of the Developers into reviewing any code I supplied, then compile it yourself)! Here is an example:
add a new menu item (I've added two but let's look at the easy one "My Amplifier") to menus.cpp:
Code: Select all
// Generate Menu
//////////////////////////////////////////////////////////////////////////
c->BeginMenu(_("&Generate"));
c->SetDefaultFlags(AudioIONotBusyFlag, AudioIONotBusyFlag);
c->AddItem(wxT("MySilenceGenerator"), _("My Silence Generator"), FN(OnAddSilence), wxT("Ctrl+G"));//efm5
c->AddItem(wxT("MyAmplifier"), _("My Amplifier"), FN(OnAmplify), wxT("Ctrl+8"));//efm5
Code: Select all
void AudacityProject::OnAmplify()
{
OnEffect(38, 0);//index = 0 type = 38
}
fix the header menus.h:
Code: Select all
// Generate & Analyze Menus
void OnAddSilence();
void OnAmplify();