├── README.md ├── pyHowling ├── __init__.py ├── howling_detection.py └── utils.py ├── test ├── LDC93S6A.wav ├── added_howling.wav ├── path.txt └── removed_howling.wav ├── test_howling_suppression.py └── test_no_howling_detection.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenwj1989/python_howling_suppression/HEAD/README.md -------------------------------------------------------------------------------- /pyHowling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenwj1989/python_howling_suppression/HEAD/pyHowling/__init__.py -------------------------------------------------------------------------------- /pyHowling/howling_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenwj1989/python_howling_suppression/HEAD/pyHowling/howling_detection.py -------------------------------------------------------------------------------- /pyHowling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenwj1989/python_howling_suppression/HEAD/pyHowling/utils.py -------------------------------------------------------------------------------- /test/LDC93S6A.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenwj1989/python_howling_suppression/HEAD/test/LDC93S6A.wav -------------------------------------------------------------------------------- /test/added_howling.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenwj1989/python_howling_suppression/HEAD/test/added_howling.wav -------------------------------------------------------------------------------- /test/path.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenwj1989/python_howling_suppression/HEAD/test/path.txt -------------------------------------------------------------------------------- /test/removed_howling.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenwj1989/python_howling_suppression/HEAD/test/removed_howling.wav -------------------------------------------------------------------------------- /test_howling_suppression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenwj1989/python_howling_suppression/HEAD/test_howling_suppression.py -------------------------------------------------------------------------------- /test_no_howling_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenwj1989/python_howling_suppression/HEAD/test_no_howling_detection.py --------------------------------------------------------------------------------