Spaces:
Sleeping
Sleeping
File size: 419 Bytes
92aa50c 5186840 7362dd3 3dd60f3 |
1 2 3 4 5 6 7 8 9 |
# Function to apply wavelet denoising
import pywt
import numpy as np
def wavelet_denoise(audio, wavelet='db1', level=1):
coeffs = pywt.wavedec(audio, wavelet, mode='per')
sigma = np.median(np.abs(coeffs[-level])) / 0.5
uthresh = sigma * np.sqrt(2 * np.log(len(audio)))
coeffs[1:] = [pywt.threshold(i, value=uthresh, mode='soft') for i in coeffs[1:]]
return pywt.waverec(coeffs, wavelet, mode='per') |