find .mp3 and .wav files in folder
1 回表示 (過去 30 日間)
古いコメントを表示
Hi,
I want to read both .mp3 and .wav files in folder at same time. How can i do this?
0 件のコメント
回答 (1 件)
Stephen23
2016 年 1 月 27 日
S = [dir('*.mp3');dir('*.wav')]
N = {S.name}
for k + numel(N)
N{k} % name of file
.. your code
end
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Audio I/O and Waveform Generation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!