audio file sounds bad/noisy after passing through low pass filter
问题 I am trying to pass my audio through low pass filter, so as to filter out noise from it. However, the output of the wav is very noisy, and I am unable to understand why. Find the original and filtered wav and their resp. spectrograms below link. enter link description here The code I have used is: #https://stackoverflow.com/questions/25191620/creating-lowpass-filter-in-scipy-understanding-methods-and-units import numpy as np from scipy.signal import butter, lfilter, freqz, filtfilt from