Signal audio - effect downsampling ?

15 次查看(过去 30 天)
HI EVERYBODY!
clear, clf
fprintf('Choose integer M \n')
prompt='';
M=input(prompt) %factor de reducion
[y,Fs]= audioread('hola.wav');
figure(1)
plot(y);
grid on;
sound(y,Fs);
pause(10)
x=downsample(y,M);
figure(2)
plot(x)
grid on ;
pause(10)
sound(x,Fs);
pause(12)
audiowrite('vozgrave.flac',f,Fs);
I would like to make an inquiry, who can help me, I appreciate it. I'm doing the downsampling effect on an audio signal with an integer M factor for example 2 to make the a acute voice. The problem is the following, my original audio has a certain sampling frequency, a number of samples and a duration for example of 10 sec. When applying the dowsampling effect with a reduction factor of M = 2, the audio time is reduced to 5 seconds. There is some way in matlab to make the high-pitched voice effect as it happens to me here but keeping 10 seconds of the original audio?
I leave my program Thank you very much to all!

回答(2 个)

Thiago Henrique Gomes Lobato
编辑:Thiago Henrique Gomes Lobato 2020-5-31
What exactly do you want to achieve? You see, downsampling the signal alone doesn't increases the frequency of it. This effects of high pitch happens because you play the new sound with the older sampling rate. This makes the frequency of the sound increase M times, since it is like you're reading the "same" data but M times faster. If you use sound(x,Fs/M) the sound would be pratically the same (as long Nyquist frequency still holds) and with the same duration. Thus you cannot expect the sound to have the same duration in your case with same Fs. For this, you will have to use some frequency shift algorithm to change the frequency while maintain the original sampling rate. If you want to have the exactly same signal but only a sound file with the given duration you can always pad zeros to the array so the number of samples doesn't change in respect to the original sound.
  3 个评论
Thiago Henrique Gomes Lobato
You actually want a pitch shifter. Look for Phase Vocoder, a good example with matlab code is in this site https://www.eumus.edu.uy/eme/ensenanza/electivas/dsp/presentaciones/ejemplos_clase/phase_vocoder/A%20Phase%20Vocoder%20in%20Matlab.htm .
If you copy the functions from this site, you can achieve what you want as:
window = 4096; % try different values in the form of 2^n
x=pvoc(y,1/M,window);
x=downsample(x,M);

请先登录,再进行评论。


Harinadh Reddy Arikatla
clear, clf
fprintf('Choose integer M \n')
prompt='';
M=input(prompt) %factor de reducion
[y,Fs]= audioread('hola.wav');
figure(1)
plot(y);
grid on;
sound(y,Fs);
pause(10)
x=downsample(y,M);
figure(2)
plot(x)
grid on ;
pause(10)
sound(x,Fs);
pause(12)
audiowrite('vozgrave.flac',f,Fs);

类别

Help CenterFile Exchange 中查找有关 Audio I/O and Waveform Generation 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by