How to select all .wav files from a directory?
14 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Rajith
el 14 de Ag. de 2014
Hi,
I have like 125 .wav files in a directory I want to read all of them and perform some function. I have tried a lot but was unsuccessful. I had like this A = {filepathStr='path'}; for i= 1:filelength, [data,fs,nbits] = audioread(A{i});
Can some help me please.
Thanks in advance.
0 comentarios
Respuesta aceptada
Ahmet Cecen
el 14 de Ag. de 2014
Editada: Ahmet Cecen
el 14 de Ag. de 2014
files = dir('*.wav');
audio = cell(1,125);
for k = 1:125
audio{k} = audioread(files(k).name);
end
Más respuestas (0)
Ver también
Categorías
Más información sobre Audio I/O and Waveform Generation en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!