Signal audio - effect downsampling ?

10 Ansichten (letzte 30 Tage)
manuel Cabanillas
manuel Cabanillas am 31 Mai 2020
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!

Antworten (2)

Thiago Henrique Gomes Lobato
Bearbeitet: Thiago Henrique Gomes Lobato am 31 Mai 2020
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 Kommentare
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);
manuel Cabanillas
manuel Cabanillas am 1 Jun. 2020
thank you so much ! i will try it

Melden Sie sich an, um zu kommentieren.


Harinadh Reddy Arikatla
Harinadh Reddy Arikatla am 2 Dez. 2021
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);

Kategorien

Mehr zu Audio I/O and Waveform Generation finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by