horrible background buzzing noise

Effects, Recipes, Interfacing with other software, etc.
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
Post Reply
Shevach
Posts: 6
Joined: Sat Feb 01, 2014 8:28 pm
Operating System: Please select

horrible background buzzing noise

Post by Shevach » Sat Feb 01, 2014 8:42 pm

Hi there!
I don't know if this is the place or not but here goes.
Can someone tell me how I can get rid of this horrible buzzing sound that you hear on this recording.
I tried playing around with different settings on the noise removal but it just made things worse.
Thanks a lot
Sh P
Attachments
Yonason.wav
(926.89 KiB) Downloaded 72 times

kozikowski
Forum Staff
Posts: 68941
Joined: Thu Aug 02, 2007 5:57 pm
Operating System: macOS 10.13 High Sierra

Re: horrible background buzzing noise

Post by kozikowski » Sat Feb 01, 2014 9:29 pm

Noise Removal isn't the miracle drug that everyone wants it to be.

First recording? It sounds like you're trying to do an interview across the room from the microphone. Even the big kids can't do that.

Describe your microphone, computer, the room, etc.

Koz

Shevach
Posts: 6
Joined: Sat Feb 01, 2014 8:28 pm
Operating System: Please select

Re: horrible background buzzing noise

Post by Shevach » Sat Feb 01, 2014 9:48 pm

Thanks for your fast reply.
I used a MacPro with the internal mic.
It was just a regular room and we sat about foot away from the mic.
Not such a good idea? But is there any hope to save it

Trebor
Posts: 9852
Joined: Sat Dec 27, 2008 5:22 pm
Operating System: Windows 8 or 8.1

Re: horrible background buzzing noise

Post by Trebor » Sun Feb 02, 2014 12:47 am

Shevach wrote:... is there any hope to save it
Lots of notch filters required to remove the buzz-hum :
copy and paste the code below into something called Nyquist Prompt which is in Audacity's Effect menu ...

Code: Select all

    (setf s (notch2 s 90 5))   
    (setf s (notch2 s 632 50))  
    (setf s (notch2 s 899 50)) 
    (setf s (notch2 s 2898 20))  
    (setf s (notch2 s 12192 50))  
    (setq mysound s)
    (setq q 25)         ; set the base Q for the filter
    (setq iter 44)     ; set the number of iterations
    (setq freq 216.545)  ; set base frequency

    ; start the DO loop
    (dotimes (i iter mysound)   
    (setf mysound (notch2 mysound (* freq (1+ i)) (* q (1+ i))))
    )                     ;end of loop
It will look like this ...
buzz removal code (only valid for ''Yonason'' audio sample).gif
buzz removal code (only valid for ''Yonason'' audio sample).gif (13.59 KiB) Viewed 2293 times
Select the section of audio with the buzz and apply Nyquist Prompt like an effect, and voilà the buzz has gone ...
Yonason, before-after code shown applied.wav
(766.27 KiB) Downloaded 74 times
(the code only removes buzz, not hiss).
Last edited by Trebor on Sun Feb 02, 2014 1:06 am, edited 4 times in total.

kozikowski
Forum Staff
Posts: 68941
Joined: Thu Aug 02, 2007 5:57 pm
Operating System: macOS 10.13 High Sierra

Re: horrible background buzzing noise

Post by kozikowski » Sun Feb 02, 2014 12:50 am

The picture is of my noise removal settings and the clip is post correction. Noise Removal works in two steps. The first step is to get a "profile" by drag-selecting a portion of the show with noise and no performance or other noises. The second pass is the actual reduction.

I uses the first second or two of your clip as profile.

Koz
Attachments
Screen shot 2014-02-01 at 4.46.34 PM.png
Screen shot 2014-02-01 at 4.46.34 PM.png (54.12 KiB) Viewed 2293 times
YonasonPatched.wav
(926.89 KiB) Downloaded 58 times

kozikowski
Forum Staff
Posts: 68941
Joined: Thu Aug 02, 2007 5:57 pm
Operating System: macOS 10.13 High Sierra

Re: horrible background buzzing noise

Post by kozikowski » Sun Feb 02, 2014 1:07 am

I didn't know MacPros came with internal mics.

On the newer laptops, there is a setting in Apple > System Preferences > Hardware > Sound > Input > Internal Microphone: [X] Use Ambient Noise Reduction.

Try that on a test interview before you get in a car for that President Obama meeting. Typically, that only works for voices. That's not going to work if you record music.

Koz

Shevach
Posts: 6
Joined: Sat Feb 01, 2014 8:28 pm
Operating System: Please select

Re: horrible background buzzing noise

Post by Shevach » Sun Feb 02, 2014 9:55 pm

Thanks a lot. It worked perfectly!!! (like magic)
I work with children (and teens) with learning difficulties so I like to record them in the beginning and then to record again a few months later to show them how much they improved.
In the old version (before the code you sent me) it was a little hard to hear now it's great. Thanks a lot
ShP
p.s You are right I don't have a MacPro but a MacBook!

Post Reply