You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
538 B
22 lines
538 B
2 years ago
|
from paddleaudio._internal import module_utils as _mod_utils
|
||
|
|
||
|
from .sox_effects import apply_effects_file
|
||
|
from .sox_effects import apply_effects_tensor
|
||
|
from .sox_effects import effect_names
|
||
|
from .sox_effects import init_sox_effects
|
||
|
from .sox_effects import shutdown_sox_effects
|
||
|
|
||
|
if _mod_utils.is_sox_available():
|
||
|
import atexit
|
||
|
|
||
|
init_sox_effects()
|
||
|
atexit.register(shutdown_sox_effects)
|
||
|
|
||
|
__all__ = [
|
||
|
"init_sox_effects",
|
||
|
"shutdown_sox_effects",
|
||
|
"effect_names",
|
||
|
"apply_effects_tensor",
|
||
|
"apply_effects_file",
|
||
|
]
|