Help for Audacity on Windows.
Forum rules
This forum is for Audacity on Windows.
Please state which version of Windows you are using,
and the exact three-section version number of Audacity from "Help menu > About Audacity".
Audacity 1.2.x and 1.3.x are obsolete and no longer supported. If you still have those versions, please upgrade at
https://www.audacityteam.org/download/.
The old forums for those versions are now closed, but you can still read the archives of the
1.2.x and
1.3.x forums.
-
ecloev
- Posts: 8
- Joined: Sun Jan 15, 2017 7:06 pm
- Operating System: Windows 10
Post
by ecloev » Sun Jan 15, 2017 7:11 pm
Hey,
When I'm recording audio there is a ringing noise in the background.
It's not static but a high pitched ring? How can I get rid of this?
I've attached an example (The pure background noise with no voice).
I have already tried noise reduction in effects.
Thanks
-
kozikowski
- Forum Staff
- Posts: 69384
- Joined: Thu Aug 02, 2007 5:57 pm
- Operating System: macOS 10.13 High Sierra
Post
by kozikowski » Sun Jan 15, 2017 7:29 pm
What's the microphone? Blue Yeti? Windows laptop?
Koz
-
Trebor
- Posts: 9962
- Joined: Sat Dec 27, 2008 5:22 pm
- Operating System: Windows 8 or 8.1
Post
by Trebor » Sun Jan 15, 2017 10:44 pm
ecloev wrote:When I'm recording audio there is a ringing noise in the background.
It's not static but a high pitched ring? How can I get rid of this?
Applying notch filters can remove the constant noise ...
Code: Select all
(setf s (notch2 s 60 10)) ; apply 60 Hz notch
(setf s (notch2 s 500 10)) ; apply 500 Hz notch
(let* ((q 50) ; set the base Q for the filter
(freq 1000) ; set base frequency
;set the number of iterations
(iter (truncate (/ *sound-srate* (* 2 freq)))))
(dotimes (i iter s) ; start the DO loop
(setf s (notch2 s (* freq (1+ i)) (* q (1+ i))))))

- Notch-filter code in Audacity's ''Nyquist Prompt''.png (12.45 KiB) Viewed 894 times
-
ecloev
- Posts: 8
- Joined: Sun Jan 15, 2017 7:06 pm
- Operating System: Windows 10
Post
by ecloev » Sun Jan 15, 2017 10:46 pm
kozikowski wrote:What's the microphone? Blue Yeti? Windows laptop?
Koz
It's a Steelseries Arctis 5.
-
ecloev
- Posts: 8
- Joined: Sun Jan 15, 2017 7:06 pm
- Operating System: Windows 10
Post
by ecloev » Sun Jan 15, 2017 10:47 pm
Trebor wrote:ecloev wrote:Hey,
When I'm recording audio there is a ringing noise in the background.
It's not static but a high pitched ring? How can I get rid of this?
Applying notch filters can remove the constant noise ...
Code: Select all
(setf s (notch2 s 60 10)) ; apply 60 Hz notch
(setf s (notch2 s 500 10)) ; apply 500 Hz notch
(let* ((q 50) ; set the base Q for the filter
(freq 1000) ; set base frequency
;set the number of iterations
(iter (truncate (/ *sound-srate* (* 2 freq)))))
(dotimes (i iter s) ; start the DO loop
(setf s (notch2 s (* freq (1+ i)) (* q (1+ i))))))
Notch-filter code in Audacity's ''Nyquist Prompt''.png
Example, Before-After Notch-Code.wav
Didnt work.
-
kozikowski
- Forum Staff
- Posts: 69384
- Joined: Thu Aug 02, 2007 5:57 pm
- Operating System: macOS 10.13 High Sierra
Post
by kozikowski » Mon Jan 16, 2017 12:09 am
My Logitech headset does that and I've never been able to solve it.
The microphone makers claim the noise is below -60dB so it's not their problem. It's true that's the AudioBook standard, but that's also assuming a rain-in-the-trees, water-on-the-beach white noise that's easily ignored, not a tea kettle whistle.
It sounds like data leaking into your microphone. It's a cousin to The Yeti Curse. Blue Yeti performance microphones can have the same problem. We've never found a fix past stop using the headset or Yeti.
Koz
-
ecloev
- Posts: 8
- Joined: Sun Jan 15, 2017 7:06 pm
- Operating System: Windows 10
Post
by ecloev » Mon Jan 16, 2017 2:20 am
kozikowski wrote:My Logitech headset does that and I've never been able to solve it.
The microphone makers claim the noise is below -60dB so it's not their problem. It's true that's the AudioBook standard, but that's also assuming a rain-in-the-trees, water-on-the-beach white noise that's easily ignored, not a tea kettle whistle.
It sounds like data leaking into your microphone. It's a cousin to The Yeti Curse. Blue Yeti performance microphones can have the same problem. We've never found a fix past stop using the headset or Yeti.
Koz
Right, but isn't there something I can do to remove the high frequency noise from the audio?
Why can audacity remove static but not this noise?
-
kozikowski
- Forum Staff
- Posts: 69384
- Joined: Thu Aug 02, 2007 5:57 pm
- Operating System: macOS 10.13 High Sierra
Post
by kozikowski » Mon Jan 16, 2017 5:51 am
We can't take out static, either. We can suppress hiss (ffffffff) and any other single constant noise. I'm betting we can suppress your whistle but we can't make it vanish, pretty much the exact same problem with the Yeti microphone. It's like trying to filter out kid screaming on a jet/fingernails on blackboard.
Oh, while we're doing this, it's best to perform an actual test sound clip. Posting a straight line is interesting, but it doesn't always tell us The Whole Story.
http://www.kozco.com/tech/audacity/Test ... _Clip.html
Koz
-
steve
- Site Admin
- Posts: 81653
- Joined: Sat Dec 01, 2007 11:43 am
- Operating System: Linux *buntu
Post
by steve » Mon Jan 16, 2017 11:01 am
ecloev wrote:Didnt work.
You need to be more specific. Did it give an error? Did your computer catch fire? Did it remove the hum and squeal but not the other mess?
The code that Trebor posted uses legacy (version 3) syntax, so you need to select that option in the Nyquist Prompt.
-
Trebor
- Posts: 9962
- Joined: Sat Dec 27, 2008 5:22 pm
- Operating System: Windows 8 or 8.1
Post
by Trebor » Mon Jan 16, 2017 1:56 pm
steve wrote:The code that Trebor posted uses legacy (version 3) syntax, so you need to select that option in the Nyquist Prompt.
i.e. tick the box I colored yellow ...

Then apply "
Nyquist Prompt" to the audio like any other Audacity effect.