create arrays from wav file
Afficher commentaires plus anciens
hello
am beginner in Matlab and am working on Audio signals. am trying to create a data from folds that contains 256 files(wav) to be analysis ?
Réponses (1)
Image Analyst
le 30 Sep 2018
1 vote
See the FAQ for two code samples: http://matlab.wikia.com/wiki/FAQ#How_can_I_process_a_sequence_of_files.3F
2 commentaires
sam aldoss
le 2 Oct 2018
Walter Roberson
le 2 Oct 2018
projectdir = 'Name_of_folder_goes_here';
dinfo = dir( fullfile(projectdir, '*.wav') );
filenames = fullfile( projectdir, {dinfo.name} );
for K = 1 : length(filenames)
thisfile = filenames{K};
[~, basename, ~] = fileparts(thisfile);
newfile = fullfile(projectdir, [basename, '.txt']);
[data, fs] = audioread(thisfile);
save(newfile, 'data', '-ascii', '-double');
end
This will create a .txt file in the same directory and with the same basic name as the .wav file.
These files will not be efficient ways to process the signals. About the only reason to create such files would be if you were processing the files with external software -- and if you were then it would be important to know what file format the external software needed.
Catégories
En savoir plus sur Audio and Video Data dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!