How to read Audio File into Vector?

조회 수: 74 (최근 30일)
dieter alfred
dieter alfred 2020년 7월 15일
편집: Charlotte Oliver 2022년 6월 10일
Hello, I have to read a Audio File (.wav) into a vector.
I know how to plot it:
info = audioinfo('sound.wav');
[y, Fs] = audioread('sound.wav');
t = 0:1/Fs:info.Duration;
t = t(1:end-1);
plot(t,y);
xlabel('Time');
ylabel('Audio Signal');
But this Sript does not read the Audio into a Vector.
I also tried to read every single Sample, but this is to complex and I get error after error. Is there a simple way to do this?
  댓글 수: 2
Cris LaPierre
Cris LaPierre 2020년 7월 15일
It would be helpful if you could share the error messages as well as your sound.wav file.
dieter alfred
dieter alfred 2020년 7월 15일
Sorry, I cannot upload the file, because the forum doesnt accept the .wav filetype. And I have already deleted the code with the error messages. But next time I will upload everything.

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

채택된 답변

Sugar Daddy
Sugar Daddy 2020년 7월 15일
편집: Sugar Daddy 2020년 7월 15일
[y, Fs] = audioread('sound.wav');
sound_duration = length(y)/Fs;
t = 0:1/Fs:sound_duration;
t = t(1:end-1);
%%
soundsc(y,Fs);
%%
plot(t,y);
xlabel('Time');
ylabel('Audio Signal');
  댓글 수: 1
dieter alfred
dieter alfred 2020년 7월 15일
Thank you very much for your answer.

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

추가 답변 (2개)

George james
George james 2022년 6월 6일
The help slides is providing the facility for a training program that has been producing high-quality audio. The https://www.resumesplanet.com/linkedin-profile-writing.php is quite a good option to get admission to these training programs.

Charlotte Oliver
Charlotte Oliver 2022년 6월 10일
편집: Charlotte Oliver 2022년 6월 10일
there is alot of mistakes in this specific code for the correct program just visit this one https://consumeratings.com/ It will provide you the best code moreover correct your mistakes as well. happy to help you all.

카테고리

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