I used a Radio Shack “Super Cardioid Vocal Microphone” to record background narratives for some silent home movies. I am using Windows XP and the narration files are all .wav format.
I discovered that I have some low-level hum on the narratives.
Can I use Audacity to remove the hum? If so, what version should I use?
Thanks in advance.
abbaker2
Remove Low-Level Hum
Re: Remove Low-Level Hum
Use Audacity 1.3.8
If you are on Vista, read this before installing: http://wiki.audacityteam.org/index.php? ... s_Vista_OS
Hums can come in various flavours. Usually they are caused by interference from the mains electricity supply. Of course it is best to try and avoid them in the first place by using good quality microphone leads, keeping away from electrically noisy equipment such as motors, TVs, and so on, and ensuring that everything that should be earthed is earthed correctly. However we often have to work with less than perfect recordings and there are several tools in Audacity that can help.
In the US, mains hum is at 60Hz, in Europe at 50Hz. There are often also harmonics of these frequencies, so in the US you are likely to get unwanted frequencies at 60, 120, 180, 240Hz.... and in Europe 50, 100, 150, 200, 250 Hz.... If you select a section of "silent" audio (hum only) and get up the "Plot Spectrum" tool from the "Analysis" menu you should be able to see them (you may need to amplify the silence to make the noise clearly visible if it is very quiet).
Notch filters are good for removing the main part of the hum - I can't remember if one is included as part of the standard Audacity install, but if not you can use the "Nyquist Prompt" from the Effects menu and enter a little Nyquist script to do the job. You will need to select the audio first, then select "Nyquist Prompt" from the Effects menu, then enter the code below and apply it.
For the US (60Hz hum)
For Europe (50Hz hum) use this:
That should take care of the worst of it.
You can then use the "Noise Removal" effect to clean up any remaining hum. You will see instructions for this effect here: http://wiki.audacityteam.org/index.php? ... se_Removal
(the Nyquist code given above is for Audacity 1.3.8 and later - it will not work on stereo track in earlier versions.)
If you are on Vista, read this before installing: http://wiki.audacityteam.org/index.php? ... s_Vista_OS
Hums can come in various flavours. Usually they are caused by interference from the mains electricity supply. Of course it is best to try and avoid them in the first place by using good quality microphone leads, keeping away from electrically noisy equipment such as motors, TVs, and so on, and ensuring that everything that should be earthed is earthed correctly. However we often have to work with less than perfect recordings and there are several tools in Audacity that can help.
In the US, mains hum is at 60Hz, in Europe at 50Hz. There are often also harmonics of these frequencies, so in the US you are likely to get unwanted frequencies at 60, 120, 180, 240Hz.... and in Europe 50, 100, 150, 200, 250 Hz.... If you select a section of "silent" audio (hum only) and get up the "Plot Spectrum" tool from the "Analysis" menu you should be able to see them (you may need to amplify the silence to make the noise clearly visible if it is very quiet).
Notch filters are good for removing the main part of the hum - I can't remember if one is included as part of the standard Audacity install, but if not you can use the "Nyquist Prompt" from the Effects menu and enter a little Nyquist script to do the job. You will need to select the audio first, then select "Nyquist Prompt" from the Effects menu, then enter the code below and apply it.
For the US (60Hz hum)
Code: Select all
(notch2
(notch2
(notch2
(notch2
(notch2
s
300 10)
240 8)
180 4)
120 2)
60 1)
Code: Select all
(notch2
(notch2
(notch2
(notch2
(notch2
s
250 10)
200 8)
150 4)
100 2)
50 1)
You can then use the "Noise Removal" effect to clean up any remaining hum. You will see instructions for this effect here: http://wiki.audacityteam.org/index.php? ... se_Removal
(the Nyquist code given above is for Audacity 1.3.8 and later - it will not work on stereo track in earlier versions.)
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)
-
kozikowski
- Forum Staff
- Posts: 69374
- Joined: Thu Aug 02, 2007 5:57 pm
- Operating System: macOS 10.13 High Sierra
Re: Remove Low-Level Hum
My personal preference is to go with the noise removal first. There are some very good controls (in Audacity 1.3) that allow a delicate touch so you can remove the trash and not much else.
Once you use the notch filters, those sounds are gone forever, performance or not, and there's no guarantee you're going to hit the right notches or enough of them. For example, the last hum job I did had strong energy at 60, 180 and 360 (strong buzz) but almost no energy at 120. Notching out 120 may have been complete overkill.
184 is F# below middle C and 369 is F# above. Low B an octave down is 123Hz. All assuming concert tuning of a perfect piano and all dangerously close.
Koz
Once you use the notch filters, those sounds are gone forever, performance or not, and there's no guarantee you're going to hit the right notches or enough of them. For example, the last hum job I did had strong energy at 60, 180 and 360 (strong buzz) but almost no energy at 120. Notching out 120 may have been complete overkill.
184 is F# below middle C and 369 is F# above. Low B an octave down is 123Hz. All assuming concert tuning of a perfect piano and all dangerously close.
Koz
Re: Remove Low-Level Hum
It seems quite common for mains hum to be a lot more pronounced on odd harmonics than on even harmonics.kozikowski wrote:he last hum job I did had strong energy at 60, 180 and 360 (strong buzz) but almost no energy at 120. Notching out 120 may have been complete overkill.
Have you EVER seen hum that is strong on 60, 120,240 Hz but low at 180 and 300Hz?
(UK/Europe equivalent would be 50,100,200Hz)
This is where my "New Improved" hum remover comes inkozikowski wrote:184 is F# below middle C and 369 is F# above. Low B an octave down is 123Hz. All assuming concert tuning of a perfect piano and all dangerously close.
9/10 questions are answered in the FREQUENTLY ASKED QUESTIONS (FAQ)