Can you help me Filter noise from an audio file .wav
1 回表示 (過去 30 日間)
古いコメントを表示
Can someone help me Denoise this file it has a different type of noise each 8000 sample.
i tried to denoise each 8000 sample individually but i can't identify the noises.
its a .wav file
clear
clc
samples = [8000,16000];
clear y Fs
[data,fs] = audioread('noisy_1.wav',samples);
figure
stem(data);
co = fft(data);
ak = real(co);
bk = imag(co);
figure
stem(abs(co));
ak(abs(ak) >= 10) = 0;
bk(abs(bk) >= 10) = 0;
out = ak+j*bk;
figure
outf = ifft(out);
stem(outf)
sound(100*outf);
0 件のコメント
回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Audio Processing Algorithm Design についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!