
It could be nice to have an option to apply a digital Butterworth filter to the audiodata, maybe with a syntax similar to how we currently apply an SFT:
from scipy.signal import butter
from osekit.public.project import Transform
fil = butter(...)
transform = Transform(
...,
filter=fil,
)
whatcha thinkin' ??
It could be nice to have an option to apply a digital Butterworth filter to the
audiodata, maybe with a syntax similar to how we currently apply an SFT:whatcha thinkin' ??