How to truncate number of sample in audiofiles using audioDatastore function in MATLAB?
조회 수: 3 (최근 30일)
이전 댓글 표시
Hi all
I am using audiodatadatastore function to classify my speech signal using wavelet scattering . Unfortunately all my audio files are having different length or sample size. I want to make it uniform for all files.
I did try following
% while hasdata(ads)
% [data,info] = read(ads);
%
% if length(data)<45000
% data=[data;zeros(45000-length(data),1)];
% else
% data=data(1:45000);
% end
% end
But that’s of no use. Help is highly appreciated.
댓글 수: 6
Walter Roberson
2020년 4월 25일
Note: in your release the link to your example should be https://www.mathworks.com/help/releases/R2018b/wavelet/examples/music-genre-classification-using-wavelet-scattering.html
채택된 답변
Walter Roberson
2020년 4월 23일
data(45001, :) = 0;
data = data(1:45000, 1);
No if needed, and handles multiple channels converting to single channel.
댓글 수: 12
Walter Roberson
2020년 4월 25일
It will take me more searching and testing. It turns out that audioDataStore ignores custom readFcn so it might be necessary to recode it for to use a datastore of type 'File'.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Dataset Management and Labeling에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!