Feeds
提问
Matlab code for LMS filter to remove noise from audio signal
After removing some part of vocals from stereo audio how to filter it to get more precise karaoke output with the help of lms fi...
6 years 前 | 1 个回答 | 0
1
个回答提问
Can anyone suggest me how to remove vocals from stereo audio in matlab as I'm fresher & I am having software project based on karaoke to remove vocals. So plz suggest me some idea or codes to remove vocals. I hv tried this but its not removing vocal
[y, fs] = wavread('Song.wav'); sound(y,fs)F's; plot(y); left = y(:,1); right = y(:,2); fftL = fft(left); fftR = fft(right)...
6 years 前 | 1 个回答 | 0