find .mp3 and .wav files in folder
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi,
I want to read both .mp3 and .wav files in folder at same time. How can i do this?
0 Commenti
Risposte (1)
Stephen23
il 27 Gen 2016
S = [dir('*.mp3');dir('*.wav')]
N = {S.name}
for k + numel(N)
N{k} % name of file
.. your code
end
0 Commenti
Vedere anche
Categorie
Scopri di più su Audio I/O and Waveform Generation in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!