Skip to content

Commit c4f14be

Browse files
author
Warren S
committed
Beta release
1 parent 24db9ee commit c4f14be

11 files changed

+34
-61
lines changed

AudioLib/AudioEffect.py

+4-9
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,16 @@ class AudioEffect(object):
2020
def darth_vader(input_path, output_path):
2121
'''Applies a Darth Vader effect to a given input audio file'''
2222
sound = AudioProcessing(input_path)
23-
#sound.set_volume(20)
24-
sound.set_audio_pitch(-2)
25-
sound.set_audio_speed(.9)
26-
sound.set_echo(0.008)
27-
sound.set_bandpass(50, 4000)
28-
sound.set_volume(4)
29-
#sound.set_lowpass(3000)
23+
sound.set_audio_speed(.8)
24+
sound.set_echo(0.02)
25+
sound.set_lowpass(2500)
3026
sound.save_to_file(output_path)
3127

3228
@staticmethod
3329
def echo(input_path, output_path):
3430
'''Applies an echo effect to a given input audio file'''
3531
sound = AudioProcessing(input_path)
36-
sound.set_echo(0.1)
32+
sound.set_echo(0.09)
3733
sound.save_to_file(output_path)
3834

3935
@staticmethod
@@ -50,7 +46,6 @@ def radio(input_path, output_path):
5046
def robotic(input_path, output_path):
5147
'''Applies a robotic effect to a given input audio file'''
5248
sound = AudioProcessing(input_path)
53-
#sound.set_audio_pitch(1)
5449
sound.set_volume(1.5)
5550
sound.set_echo(0.01)
5651
sound.set_bandpass(300, 4000)

AudioLib/AudioProcessing.py

+25-47
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@
2222
# Add an echo to the audio
2323
sound1.set_echo(1)
2424
25+
# Applies a bandpass filter between the (<low>, <high>) range of frequencies
26+
sound.set_bandpass(50, 2600)
27+
2528
# Save the resulting processed audio data into a file
2629
sound1.save_to_file('out.wav')
2730
'''
@@ -106,52 +109,28 @@ def _set_stretch(self, factor, window_size, h):
106109
result = ((2 ** (16 - 4)) * result/result.max())
107110
self.audio_data = result.astype('int16')
108111

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)
155134

156135
@staticmethod
157136
def convert_to_mono_audio(input_audio):
@@ -163,4 +142,3 @@ def convert_to_mono_audio(input_audio):
163142
output_audio.append((e[0] / 2) + (e[1] / 2))
164143

165144
return np.array(output_audio, dtype = 'int16')
166-

out_echo.wav

-18.8 KB
Binary file not shown.

out_ghost.wav

-26.8 KB
Binary file not shown.

out_radio.wav

-18.8 KB
Binary file not shown.

out_robotic.wav

-18.8 KB
Binary file not shown.

out_vader.wav

2.17 KB
Binary file not shown.

test_effects.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
from AudioLib import AudioEffect
33

44

5-
AudioEffect.ghost('youve-been-acting.wav', 'out_ghost.wav')
6-
AudioEffect.robotic('youve-been-acting.wav', 'out_robotic.wav')
7-
AudioEffect.echo('youve-been-acting.wav', 'out_echo.wav')
8-
AudioEffect.radio('youve-been-acting.wav', 'out_radio.wav')
9-
AudioEffect.darth_vader('youve-been-acting.wav', 'out_vader.wav')
5+
AudioEffect.ghost('input.wav', 'out_ghost.wav')
6+
AudioEffect.robotic('input.wav', 'out_robotic.wav')
7+
AudioEffect.echo('input.wav', 'out_echo.wav')
8+
AudioEffect.radio('input.wav', 'out_radio.wav')
9+
AudioEffect.darth_vader('input.wav', 'out_vader.wav')

we-need-to-have.wav

-385 KB
Binary file not shown.

youre-my-man.wav

-150 KB
Binary file not shown.

youve-been-acting.wav

-369 KB
Binary file not shown.

0 commit comments

Comments
 (0)