find .mp3 and .wav files in folder
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hi,
I want to read both .mp3 and .wav files in folder at same time. How can i do this?
0 comentarios
Respuestas (1)
Stephen23
el 27 de En. de 2016
S = [dir('*.mp3');dir('*.wav')]
N = {S.name}
for k + numel(N)
N{k} % name of file
.. your code
end
0 comentarios
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!