22
22
# Add an echo to the audio
23
23
sound1.set_echo(1)
24
24
25
+ # Applies a bandpass filter between the (<low>, <high>) range of frequencies
26
+ sound.set_bandpass(50, 2600)
27
+
25
28
# Save the resulting processed audio data into a file
26
29
sound1.save_to_file('out.wav')
27
30
'''
@@ -106,52 +109,28 @@ def _set_stretch(self, factor, window_size, h):
106
109
result = ((2 ** (16 - 4 )) * result / result .max ())
107
110
self .audio_data = result .astype ('int16' )
108
111
109
- def set_highpass (self , cutoff ):
110
- '''Puts data through a highpass filter'''
111
- self .audio_data = self ._butter_highpass_filter (self .audio_data , cutoff , self .sample_freq )
112
-
113
- def set_lowpass (self , cutoff ):
114
- '''Puts data through a lowpass filter'''
115
- self .audio_data = self ._butter_lowpass_filter (self .audio_data , cutoff , self .sample_freq )
116
-
117
- def set_bandpass (self , cutoff_low , cutoff_high ):
118
- '''Puts data through a lowpass filter'''
119
- self .audio_data = self ._butter_bandpass_filter (self .audio_data , [cutoff_low , cutoff_high ], self .sample_freq )
120
-
121
- def _butter_highpass_filter (self , data , cutoff , fs , order = 5 ):
122
- b , a = self ._butter_highpass (cutoff , fs , order = order )
123
- y = signal .filtfilt (b , a , data )
124
- return y
125
-
126
- def _butter_highpass (self , cutoff , fs , order = 5 ):
127
- nyq = 0.5 * fs
128
- normal_cutoff = cutoff / nyq
129
- b , a = signal .butter (order , normal_cutoff , btype = 'highpass' , analog = False )
130
- return b , a
131
-
132
- def _butter_lowpass_filter (self , data , cutoff , fs , order = 5 ):
133
- b , a = self ._butter_lowpass (cutoff , fs , order = order )
134
- y = signal .filtfilt (b , a , data )
135
- return y
136
-
137
- def _butter_lowpass (self , cutoff , fs , order = 5 ):
138
- nyq = 0.5 * fs
139
- normal_cutoff = cutoff / nyq
140
- b , a = signal .butter (order , normal_cutoff , btype = 'lowpass' , analog = False )
141
- return b , a
142
-
143
- def _butter_bandpass_filter (self , data , cutoff , fs , order = 5 ):
144
- b , a = self ._butter_bandpass (cutoff , fs , order = order )
145
- y = signal .filtfilt (b , a , data )
146
- return y
147
-
148
- def _butter_bandpass (self , cutoff , fs , order = 5 ):
149
- nyq = 0.5 * fs
150
- normal_cutoff = np .zeros (2 )
151
- normal_cutoff [0 ] = cutoff [0 ] / nyq
152
- normal_cutoff [1 ] = cutoff [1 ] / nyq
153
- b , a = signal .butter (order , normal_cutoff , btype = 'bandpass' , analog = False )
154
- return b , a
112
+ def set_lowpass (self , cutoff_low , order = 5 ):
113
+ '''Applies a low pass filter'''
114
+ nyquist = self .sample_freq / 2.0
115
+ cutoff = cutoff_low / nyquist
116
+ x , y = signal .butter (order , cutoff , btype = 'lowpass' , analog = False )
117
+ self .audio_data = signal .filtfilt (x , y , self .audio_data )
118
+
119
+ def set_highpass (self , cutoff_high , order = 5 ):
120
+ '''Applies a high pass filter'''
121
+ nyquist = self .sample_freq / 2.0
122
+ cutoff = cutoff_high / nyquist
123
+ x , y = signal .butter (order , cutoff , btype = 'highpass' , analog = False )
124
+ self .audio_data = signal .filtfilt (x , y , self .audio_data )
125
+
126
+ def set_bandpass (self , cutoff_low , cutoff_high , order = 5 ):
127
+ '''Applies a band pass filter'''
128
+ cutoff = np .zeros (2 )
129
+ nyquist = self .sample_freq / 2.0
130
+ cutoff [0 ] = cutoff_low / nyquist
131
+ cutoff [1 ] = cutoff_high / nyquist
132
+ x , y = signal .butter (order , cutoff , btype = 'bandpass' , analog = False )
133
+ self .audio_data = signal .filtfilt (x , y , self .audio_data )
155
134
156
135
@staticmethod
157
136
def convert_to_mono_audio (input_audio ):
@@ -163,4 +142,3 @@ def convert_to_mono_audio(input_audio):
163
142
output_audio .append ((e [0 ] / 2 ) + (e [1 ] / 2 ))
164
143
165
144
return np .array (output_audio , dtype = 'int16' )
166
-
0 commit comments