필터 지우기
필터 지우기

Is it possible to extract a sound that we modified in matlab ?

조회 수: 1 (최근 30일)
Hello, everyone.
I performed audio processing on a .wav file and I would like to know if it was possible to extract this modified file.
If anyone has an idea that would be cool :)
  댓글 수: 1
Geoff Hayes
Geoff Hayes 2022년 1월 29일
@Bastien Varanges - please clarify what you mean by "extract this modified file". Do you just want to read the data from the file with audioread?

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

채택된 답변

Shreyan Basu Ray
Shreyan Basu Ray 2022년 1월 29일
Hey Bastien !
If by extract you mean to save the modified audio signal from MATLAB then use audiowrite(filename,y,Fs). This function writes a matrix of audio data, y, with sample rate Fs to a file called filename. The filename input also specifies the output file format. The output data type depends on the output file format and the data type of the audio data, y.
A reference to help you -
Create a WAVE file from the example file handel.mat, and read the file back into MATLAB.
Write a WAVE (.wav) file in the current folder :
load handel.mat
filename = 'handel.wav';
audiowrite(filename,y,Fs);
clear y Fs
Read the data back into MATLAB using audioread : [y,Fs] = audioread(filename);
Listen to the audio : sound(y,Fs);
Hope this helps. Happy Matlabbing !

추가 답변 (0개)

카테고리

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