Trying to convert whole folder into spectrograms
Show older comments
Hi, I have a local folder of .wav files that Id like to convert to spectrograms (.png) in another local folder. so I can use it to train my CNN model. This is what I have but it's not working. Also gave no errors. Help please!!
folder = uigetdir(pwd,'*insert source folder path name here*');
filelist = dir(fullfile(folder, '*.wav')); %get list of all wav files in the folder
for fileidx = 1:numel(filelist)
[audioIn,fs] = audioread({filelist.name});
S = melSpectrogram(audioIn,fs);
save('*insert destination folder path name here*','Cough1.png','-png');
end
Accepted Answer
More Answers (1)
Rik
on 12 Apr 2022
0 votes
You are inserting all files at once, instead of indexing into the filelist array.
If you want want to store an image you need to use imwrite. Look up the documentation to see several examples. I would suggest generating the file name of the png with fullfile, using filelist(n).folder.
2 Comments
Justine Hughes
on 12 Apr 2022
Rik
on 12 Apr 2022
You're indexing the field, not the struct.
for fileidx = 1:numel(filelist)
[audioIn,fs] = audioread(filelist(fileidx).name);
S = melSpectrogram(audioIn,fs);
filename = sprintf('Cough%d.png',fileidx);
imagename = fullfile(savefolder,sprintf('Cough_%d.png',fileidx));
imwrite(S,imagename); %save image as png
end
Categories
Find more on Time-Frequency Analysis in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!