필터 지우기
필터 지우기

How to audiowrite a soundfile from m4a to wav?

조회 수: 16 (최근 30일)
Laura Sels
Laura Sels 2016년 7월 5일
댓글: Geoff Hayes 2016년 7월 7일
Hello!
I want to write an audiofile from m4a to wav? I thought it was easy, but I miss something I guess..
This is what I'm doing:
load hoi.m4a
filename='hoi.wav'
audiowrite(filename, y, Fs)
This is what the help function says, but what am I supposed to fill in on y and Fs?
Thanks!

채택된 답변

Geoff Hayes
Geoff Hayes 2016년 7월 5일
Laura - I think that you want to use audioread first as
m4AFilename = 'hoi.m4a';
[y,Fs] = audioread(m4AFilename);
and then write it as a wav file using audiowrite as
wavFilename = 'hoi.wav';
audio write(wavFilename,y,Fs);
Try the above and see what happens!
  댓글 수: 3
Laura Sels
Laura Sels 2016년 7월 7일
편집: Geoff Hayes 2016년 7월 7일
Now I want to audiowrite and save not from a m4a or wav file but from a recorded file in matlab. How can I do that, because this does not work..
% record some speech (chien):
r= audiorecorder;
disp('Start speaking.')
recordblocking(r, 5);
disp('End of Recording.');
% Play back the recording.
play(r);
% Store data in double-precision array.
myRecording = getaudiodata(r);
% write the recording in a wav file
filename='chien.wav';
audiowrite(filename, y, Fs);
[y, Fs] = audioread(filename);
Geoff Hayes
Geoff Hayes 2016년 7월 7일
Laura - presumably it isn't working because you haven't defined the y and Fs and so the line
audiowrite(filename, y, Fs);
fails. Is that correct? If so, then you need to define them
y = getaudiodata(r);
Fs = get(r,'SampleRate');

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Thorsten
Thorsten 2016년 7월 5일
Use audioread to read the m4a. audioread returns y and Fs, and you can pass these to audio write:
[y, Fs] = audioread('hoi.m4a');
audiowrite('hoi.wav', y, Fs)
  댓글 수: 1
Laura Sels
Laura Sels 2016년 7월 6일
Thank you! I forgot the audioread! And I had a not working soundfile but now it works!

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Audio and Video Data에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by