Is it possible to extract a sound that we modified in matlab ?
13 次查看(过去 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
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
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 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Audio I/O and Waveform Generation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!