-
Notifications
You must be signed in to change notification settings - Fork 303
/
__init__.py
148 lines (144 loc) · 3.01 KB
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
#!/usr/bin/env python3
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the license found in the
# LICENSE file in the root directory of this source tree.
# pyre-unsafe
from augly.audio.composition import Compose, OneOf
from augly.audio.functional import (
add_background_noise,
apply_lambda,
change_volume,
clicks,
clip,
fft_convolve,
harmonic,
high_pass_filter,
insert_in_background,
invert_channels,
loop,
low_pass_filter,
normalize,
peaking_equalizer,
percussive,
pitch_shift,
reverb,
speed,
tempo,
time_stretch,
to_mono,
)
from augly.audio.intensity import (
add_background_noise_intensity,
apply_lambda_intensity,
change_volume_intensity,
clicks_intensity,
clip_intensity,
fft_convolve_intensity,
harmonic_intensity,
high_pass_filter_intensity,
insert_in_background_intensity,
invert_channels_intensity,
loop_intensity,
low_pass_filter_intensity,
normalize_intensity,
peaking_equalizer_intensity,
percussive_intensity,
pitch_shift_intensity,
reverb_intensity,
speed_intensity,
tempo_intensity,
time_stretch_intensity,
to_mono_intensity,
)
from augly.audio.transforms import (
AddBackgroundNoise,
ApplyLambda,
ChangeVolume,
Clicks,
Clip,
FFTConvolve,
Harmonic,
HighPassFilter,
InsertInBackground,
InvertChannels,
Loop,
LowPassFilter,
Normalize,
PeakingEqualizer,
Percussive,
PitchShift,
Reverb,
Speed,
Tempo,
TimeStretch,
ToMono,
)
__all__ = [
"add_background_noise",
"apply_lambda",
"change_volume",
"clicks",
"clip",
"fft_convolve",
"harmonic",
"high_pass_filter",
"insert_in_background",
"invert_channels",
"loop",
"low_pass_filter",
"normalize",
"peaking_equalizer",
"percussive",
"pitch_shift",
"reverb",
"speed",
"tempo",
"time_stretch",
"to_mono",
"AddBackgroundNoise",
"ApplyLambda",
"ChangeVolume",
"Clicks",
"Clip",
"Compose",
"FFTConvolve",
"Harmonic",
"HighPassFilter",
"InsertInBackground",
"InvertChannels",
"Loop",
"LowPassFilter",
"Normalize",
"OneOf",
"PeakingEqualizer",
"Percussive",
"PitchShift",
"Reverb",
"Speed",
"Tempo",
"TimeStretch",
"ToMono",
"add_background_noise_intensity",
"apply_lambda_intensity",
"change_volume_intensity",
"clicks_intensity",
"clip_intensity",
"fft_convolve_intensity",
"harmonic_intensity",
"high_pass_filter_intensity",
"insert_in_background_intensity",
"invert_channels_intensity",
"loop_intensity",
"low_pass_filter_intensity",
"normalize_intensity",
"peaking_equalizer_intensity",
"percussive_intensity",
"pitch_shift_intensity",
"reverb_intensity",
"speed_intensity",
"tempo_intensity",
"time_stretch_intensity",
"to_mono_intensity",
]