Pitch Determination

Pitch determination and voice quality analysis using subharmonic-to-harmonic ratio.

This is an algorithm I developed several years ago. It's been provided for free through Mathworks' website since 2002. I finally decide to give it a new home and hope to make it more useful.

It's written in Matlab, but you should be able to run it with the latest Octave, a free alternative to Matlab.

Below is a simple test of the code:

[x,fs]=wavread('test.wav'); [f0_time,f0_value,SHR,f0_candidates]=shrp(x,fs); subplot(2,1,1),plot(x) subplot(2,1,1),plot(f0_time,f0_value)

The algorithm is described in an ICASSP 2002 paper attached below. 


AttachmentSize
pda_matlab.zip9.24 KB
sun02pitch.pdf183.41 KB

Comments

Post new comment

The content of this field is kept private and will not be shown publicly.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Lines and paragraphs break automatically.

More information about formatting options

CAPTCHA
This question is for testing whether you are a human visitor and to prevent automated spam submissions.
Image CAPTCHA
Copy the characters (respecting upper/lower case) from the image.

Back to top