フィルターのクリア

one frame of audio

1 回表示 (過去 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 件)

カテゴリ

Help Center および File ExchangeAudio and Video Data についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by