skeletons are back in the closet
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@ -0,0 +1,2 @@
|
||||
#!/usr/bin/env python3
|
||||
from .soundsignalprocessor import SoundSignalProcessor
|
||||
|
23
src/signal_processor/soundsignalprocessor.py
Normal file
23
src/signal_processor/soundsignalprocessor.py
Normal file
@ -0,0 +1,23 @@
|
||||
#!/usr/bin/env python3
|
||||
from .abcsignalprocessor import AbcSignalProcessor
|
||||
|
||||
"""
|
||||
Abstract base class for signalprocessor
|
||||
"""
|
||||
|
||||
__author__ = "@tormakris"
|
||||
__copyright__ = "Copyright 2020, Birbnetes Team"
|
||||
__module_name__ = "soundsignalprocessor"
|
||||
__version__text__ = "1"
|
||||
|
||||
|
||||
class SoundSignalProcessor(AbcSignalProcessor):
|
||||
"""
|
||||
SoundSignalProcessor class, responsible for handling the sound signal processor pipeline.
|
||||
"""
|
||||
def processcurrentsignal(self):
|
||||
"""
|
||||
Process a sound sample.
|
||||
:return:
|
||||
"""
|
||||
pass
|
Reference in New Issue
Block a user