Why does the output of audioread() gives samples less than shown in audioinfo() ?
조회 수: 2(최근 30일)
표시 이전 댓글
for some reason there is no problem in mac but in windows
댓글 수: 2
채택된 답변
Star Strider
2022년 1월 31일
This is interesting!
The online Run feature computer uses Linux, and gives this result:
ZF = 'https://www.mathworks.com/matlabcentral/answers/uploaded_files/880055/VEHCar_Acceleration%20aston%20martin%20(ID%200600)_BSB.mp3.zip';
UZ = unzip(ZF);
ai = audioinfo(UZ{1})
[s,Fs] = audioread(UZ{1});
s_len = numel(s)
Windows 11 (run offlilne with the same code with R2021b) gives the following:
ai =
struct with fields:
Filename: 'C:\Users\vitha\Documents\MATLAB\FEF_Files\R & D\Answers & CSSM Problems\Temporary Projects\VEHCar_Acceleration aston martin (ID 0600)_BSB.mp3'
CompressionMethod: 'MP3'
NumChannels: 1
SampleRate: 48000
TotalSamples: 314496
Duration: 6.552
Title: []
Comment: []
Artist: []
BitRate: 320
s_len =
313968
I don’t have access to a Mac, so I have no idea what result it would give.
.
댓글 수: 6
추가 답변(0개)
참고 항목
범주
Find more on Audio and Video Data 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!