Hi there,
I seem to get a lot of clicks when recording and would really appreciate help/feedback. This is my process below (please see attached an unprocessed recording and de-clicker settings).
(Shure SM58 > RolandRubix audio interface > desktop computer).
Process
1. Record in audacity (export to wav)
2. Process in Auphonic to wav (with the following audio algorithms selected: adaptive leveler, normalization, filtering and noise/hum reduction).
3. Apply de-clickr in audacity
I have also tried it the other way around,ie de-click then Auphonic, but either way I was till having the de-clicker affecting other parts of my audio (creating that rumbling/raspy effect with certain words), whilst still having clicks here and there that I couldn't get rid off. I read other forum entries and saw that people had adjusted the settings in the de-clicker somewhat so I did the same as them and it did seem to work much better than before, ie removing raspy affect on words. However, I was wondering if someone would be so kind to analyse my recording/see if my settings in the de-clicker suit my recording/voice in regards to the clicks I receive when recording as I do still receive clicks here and there. Ultimately, I would love to be able to de-click in one go and not have spend hours editing clicks (which I know might not be possible!)
I am a complete novice when it comes to analysing my voice in regards to what settings I should use, so any help is much appreciated. Also, I anyone has any suggestions in regards to my process of recording etc then I am open to suggestions.
Thanks in advance! (the recording is in Swedish, apologies!)
Nordic
De-clicker effect question
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.
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.
De-clicker effect question
- Attachments
-
- De-clicker settings
- Capture.JPG (45.07 KiB) Viewed 407 times
-
- audio test.mp3
- Audio file
- (1.12 MiB) Downloaded 11 times
-
kozikowski
- Forum Staff
- Posts: 68901
- Joined: Thu Aug 02, 2007 5:57 pm
- Operating System: macOS 10.13 High Sierra
Re: De-clicker effect question
I think I'd be much more interested in experiencing the work before you applied any effects or corrections. We can't take corrections out of a performance, so you are basically hiding the original problem from us.
Clicking is not normal behavior. We should solve the problem back when the computer put the clicking in, not try to take it out later.
Koz
That one right there.1. Record in audacity (export to wav)
Clicking is not normal behavior. We should solve the problem back when the computer put the clicking in, not try to take it out later.
Koz
Re: De-clicker effect question
Hi,
Thanks for the reply. The file I attached is the original recording without any processing. Did you have a chance to listen to it? Does it sounds like abnormal clicking?
Sorry if I was not clear from the beginning!
Thanks
Nordic
Thanks for the reply. The file I attached is the original recording without any processing. Did you have a chance to listen to it? Does it sounds like abnormal clicking?
Sorry if I was not clear from the beginning!
Thanks
Nordic
Re: De-clicker effect question
This Nyquist code will not help clicks, (or hiss), but will remove the faint constant whine ...
Code: Select all
(setf *track* (notch2 *track* 1341 50))
(setf *track* (notch2 *track* 1288 50))
(setf *track* (notch2 *track* 1232 50))
(setf *track* (notch2 *track* 135 5))
(setf *track* (notch2 *track* 50 5))
(highpass8 *track* 20)- Attachments
-
- Nordic, before-after whine code.flac
- (1.35 MiB) Downloaded 13 times
Re: De-clicker effect question
Thank you for the help.
Can you please, if you don't mind, tell me your whole process to get to the final processed file you posted?
Thanks again,
Nordic
Can you please, if you don't mind, tell me your whole process to get to the final processed file you posted?
Thanks again,
Nordic
Re: De-clicker effect question
First I made it louder ...
RMS normalize to -18dB, then (soft) Limiter -3dB (no make-up gain).
Then I applied the notch filter code (above) to remove the constant whine.
( the code will work whether you make it louder or not: it's not threshold dependent )
BTW there is a loud 10Hz signal on your original ...
10Hz is inaudible, but could cause raspy effect if a tool which is threshold-dependent is applied.
The code above includes a high-pass filter which removes everything below 20Hz.
So you should apply the code before applying any other processing, (e.g. before de-click, gate, compressor ).