Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

about sound wave cuting code

1 visualización (últimos 30 días)
vageesh kulkarni
vageesh kulkarni el 21 de Nov. de 2015
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
sir ,i had wave file 1 to 12 .1 to 4 and 8 to 12 is novice .I only want 5 to 7 .What was the code .so please send Matlab code .

Respuestas (1)

Walter Roberson
Walter Roberson el 21 de Nov. de 2015
[data, FS] = wavread('YourWavFile.wav');
start_at_s = 5; %seconds
end_at_s = 7; %seconds
start_at_samp = max(ceil(start_at_s * FS), 1); %includes range check
end_at_samp = min( floor(end_at_s * FS), size(data,1)); %includes range check
sound_clip = data(start_at_samp:end_at_samp, :);
  2 comentarios
vageesh kulkarni
vageesh kulkarni el 21 de Nov. de 2015
sir i have a wav file with a sound called "left". when i plot that, i will get some disturbance also. so i need to avoid that disturbance.
Walter Roberson
Walter Roberson el 21 de Nov. de 2015
Where I wrote 'YourWaveFile.wav' you would use 'left.wav'
If you are asking to automatically detect and remove noise then that is a very different question than asking about clipping at specific times. You will need to tell us more about the kind of noise and how it differs from the sound you want.

La pregunta está cerrada.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by