How to extract the pitch of a signal ?
조회 수: 7 (최근 30일)
이전 댓글 표시
Hello everybody, I am new to Matlab and I'm trying to extract the pitch of an speech signal but I don't have the signal and I have the below information:
- A vector of frequency
- A vector of time
- A vector of Instantaneous Loudness Level
- A histogram giving the Loudness Level versus time and frequency (spectrogram)
- If anyone knows how to re-synthesize a signal with this information, it'll be very useful and easy to extract the pitch.
Thank you everyone for your help
댓글 수: 0
답변 (2개)
Image Analyst
2016년 8월 11일
What do you mean by pitch? Each stretch of time has a frequency range. spectrogram() shows you that. Maybe you just want to pick out the highest magnitude frequency for that chunk of time. From wikipedia https://en.wikipedia.org/wiki/Pitch_(music)
Pitch is an auditory sensation in which a listener assigns musical tones to relative positions on a musical scale based primarily on their perception of the frequency of vibration.[6] Pitch is closely related to frequency, but the two are not equivalent. Frequency is an objective, scientific attribute that can be measured. Pitch is each person's subjective perception of a sound wave, which cannot be directly measured. However, this does not necessarily mean that most people won't agree on which notes are higher and lower.
Sound waves themselves do not have pitch, but their oscillations can be measured to obtain a frequency. It takes a sentient mind to map the internal quality of pitch.
댓글 수: 2
Image Analyst
2016년 8월 12일
Well, like I said, then just pick out the max of the spectrum. You can either use spectrogram() if you want the peak (dominant frequency) as a function of time, or you can take the whole waveform and use pwelch(), or fft() if you don't have the Signal Processing Toolbox, which would be fine if you don't expect the dominant frequency to change over the length of the sound. See help demos for pwelch().
[signal, Fs] = audioread('guitartune.wav'); % Open demo sound
spectrum = pwelch(signal);
plot(10*log10(spectrum))
drawnow;
sound(signal, Fs);
Manpreet Sivia
2017년 6월 1일
how to extract pitch of sound file without using toolbox functions
댓글 수: 2
Image Analyst
2022년 5월 18일
@Vanya Meegan what was wrong with find the frequency of the peak of the spectrum like I suggested here:
참고 항목
카테고리
Help Center 및 File Exchange에서 Time-Frequency Analysis에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!