Reducing Noise and Artifacts with the Pitch Function

1 vue (au cours des 30 derniers jours)
Manash Sahoo
Manash Sahoo le 10 Fév 2021
Commenté : Manash Sahoo le 17 Fév 2021
Hi everyone!
I am using the pitch function on short audio files of speech utterences (usually less than 1 second long).
p = pitch(aud,app.recObj.SampleRate,'WindowLength',round(fs*.05));
However, when I do this, I usually get an output with a very low sampling rate that is rich with artifacts.
How can I make it so I it outputs at a higher sampling rate (I'm recording at 44100Hz), and remove artifacts? I've tried using a smaller window, but that usually ends up with the error "Invalid window length".
An example is provided below.
Thank you!

Réponse acceptée

jibrahim
jibrahim le 17 Fév 2021
Hi Manash,
If you want the rate of pitch estimates to be higher, you will need to increase the overlap length:
p = pitch(aud,app.recObj.SampleRate,'WindowLength',round(fs*.05),'OverlapLength',round(fs*.05)-1);
This will generate a pitch estimate for windows with a maximum overlap.
I suggest you first throw away silence from your signal (using the function detectSpeech) before getting the pitch. That will eliminate parts of the signal where pitch does not apply.
You can further smooth the signal with median filtering. There is a parameter on this function that allows you to control the length of the median filter.

Plus de réponses (0)

Catégories

En savoir plus sur Audio Processing Algorithm Design dans Help Center et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by