one frame of audio

5 次查看(过去 30 天)
seyed
seyed 2014-11-4
评论: seyed 2014-11-4
hi with run audioread ([y,Fs]=audioread('1.mp3')) in matlab y is contains several thousand of value now what is one of frame from y? Each of these values (from y) what they say? is it one frame?

采纳的回答

Jeffrey Girard
Jeffrey Girard 2014-11-4
编辑:Jeffrey Girard 2014-11-4
info = audioinfo('1.mp3');
[y,Fs] = audioread('1.mp3');
Let's say that 1.mp3 is a stereo (i.e., two channel) audio file that is 10 seconds long and has a sampling frequency of 44,100Hz. You can tell this from the info structure that you created with audioinfo(). In this case, Fs will equal 44100 and y will be a 441000x2 single-precision matrix (44100Hz*10sec = 441000samples). Each row of y will correspond to a particular sample and each column will correspond to one of the audio channels. For an mp3 file, the data range of y is -1.0 to +1.0. For other types of files, you can check the documentation by typing doc audioread into MATLAB.
  1 个评论
seyed
seyed 2014-11-4
Thank you so much For a good description the audio mp3 is mono, 10' and Fs=44100 total of samples is 441000 (overlab=0,rowofbuffer=1) now we are 441000 frame? Given the samples, what is frame?

请先登录,再进行评论。

更多回答(0 个)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by