├── .codecov.yml ├── .coveragerc ├── .coveralls.yml ├── .gitignore ├── .readthedocs.yml ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── appveyor.yml ├── docs ├── Makefile ├── icon.png ├── make.bat ├── requirements.txt └── source │ ├── _static │ ├── creativecommons.png │ ├── css │ │ └── custom.css │ ├── favicon_io │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ └── site.webmanifest │ ├── logo.png │ └── logo1.png │ ├── _templates │ ├── footer.html │ ├── hello.html │ ├── layout.html │ ├── navbar-nav.html │ ├── navbar_version.html │ └── sidebar-nav-bs.html │ ├── auga.rst │ ├── augf.rst │ ├── augt.rst │ ├── code.rst │ ├── conf.py │ ├── filters.rst │ ├── index.rst │ └── io.rst ├── language.json ├── paper ├── Makefile ├── README.md ├── assets │ ├── apa.csl │ ├── latex.template │ └── logo.png ├── experiment │ ├── README.md │ ├── _1_get_data.py │ ├── _2_gen_augmentations.py │ ├── _3_get_features.py │ ├── _4_run_experiment.py │ ├── results.txt │ ├── sounds │ │ ├── ir_classroom.wav │ │ ├── ir_smartphone_mic.wav │ │ ├── tel_noise.wav │ │ └── white_noise.wav │ └── utils │ │ ├── classifiers_config.py │ │ ├── cmat.py │ │ └── dataproc.py ├── figs │ ├── bpass.png │ ├── hpass.png │ └── lpass.png ├── paper.bib ├── paper.md ├── paper.pdf └── refs.md ├── pydiogment ├── __init__.py ├── auga.py ├── augf.py ├── augt.py └── utils │ ├── __init__.py │ ├── filters.py │ └── io.py ├── requirements.txt ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── test_auga.py ├── test_augf.py ├── test_augt.py ├── test_utils.py └── testfiles ├── tel_noise.wav ├── test.wav ├── test_augmented_-100_noisy.wav ├── test_augmented_-20_noisy.wav ├── test_augmented_-3_noisy.wav ├── test_augmented_-50_noisy.wav ├── test_augmented_-6_noisy.wav ├── test_augmented_0.9_pass_filtered.wav ├── test_augmented_0.9_toned.wav ├── test_augmented_1.1_pass_filtered.wav ├── test_augmented_1.1_toned.wav ├── test_augmented_fade_in_out.wav ├── test_augmented_left_1_shifted.wav ├── test_augmented_peak_normalized.wav ├── test_augmented_randomly_cropped_1.wav ├── test_augmented_resampled_to_16000.wav ├── test_augmented_resampled_to_4000.wav ├── test_augmented_resampled_to_6000.wav ├── test_augmented_resampled_to_9000.wav ├── test_augmented_reversed.wav ├── test_augmented_right_1_shifted.wav ├── test_augmented_rms_normalized.wav ├── test_augmented_slowed.wav ├── test_augmented_speeded.wav ├── test_augmented_tel_noise_convolved_with_level_0.01.wav ├── test_augmented_tel_noise_convolved_with_level_0.25.wav ├── test_augmented_tel_noise_convolved_with_level_0.5.wav ├── test_augmented_with_-100_gain.wav ├── test_augmented_with_-25_gain.wav ├── test_augmented_with_-50_gain.wav └── test_augmented_without_silence.wav /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/.coveragerc -------------------------------------------------------------------------------- /.coveralls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/.coveralls.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/appveyor.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/docs/icon.png -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | 2 | sphinxcontrib-napoleon==0.6.1 3 | numpy 4 | scipy 5 | -------------------------------------------------------------------------------- /docs/source/_static/creativecommons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/docs/source/_static/creativecommons.png -------------------------------------------------------------------------------- /docs/source/_static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/docs/source/_static/css/custom.css -------------------------------------------------------------------------------- /docs/source/_static/favicon_io/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/docs/source/_static/favicon_io/android-chrome-192x192.png -------------------------------------------------------------------------------- /docs/source/_static/favicon_io/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/docs/source/_static/favicon_io/android-chrome-512x512.png -------------------------------------------------------------------------------- /docs/source/_static/favicon_io/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/docs/source/_static/favicon_io/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/source/_static/favicon_io/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/docs/source/_static/favicon_io/favicon-16x16.png -------------------------------------------------------------------------------- /docs/source/_static/favicon_io/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/docs/source/_static/favicon_io/favicon-32x32.png -------------------------------------------------------------------------------- /docs/source/_static/favicon_io/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/docs/source/_static/favicon_io/favicon.ico -------------------------------------------------------------------------------- /docs/source/_static/favicon_io/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/docs/source/_static/favicon_io/site.webmanifest -------------------------------------------------------------------------------- /docs/source/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/docs/source/_static/logo.png -------------------------------------------------------------------------------- /docs/source/_static/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/docs/source/_static/logo1.png -------------------------------------------------------------------------------- /docs/source/_templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/docs/source/_templates/footer.html -------------------------------------------------------------------------------- /docs/source/_templates/hello.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/docs/source/_templates/hello.html -------------------------------------------------------------------------------- /docs/source/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/docs/source/_templates/layout.html -------------------------------------------------------------------------------- /docs/source/_templates/navbar-nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/docs/source/_templates/navbar-nav.html -------------------------------------------------------------------------------- /docs/source/_templates/navbar_version.html: -------------------------------------------------------------------------------- 1 | 2 | TEST: v{{ version }} 3 | -------------------------------------------------------------------------------- /docs/source/_templates/sidebar-nav-bs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/docs/source/_templates/sidebar-nav-bs.html -------------------------------------------------------------------------------- /docs/source/auga.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/docs/source/auga.rst -------------------------------------------------------------------------------- /docs/source/augf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/docs/source/augf.rst -------------------------------------------------------------------------------- /docs/source/augt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/docs/source/augt.rst -------------------------------------------------------------------------------- /docs/source/code.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/docs/source/code.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/filters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/docs/source/filters.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/io.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/docs/source/io.rst -------------------------------------------------------------------------------- /language.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/language.json -------------------------------------------------------------------------------- /paper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/paper/Makefile -------------------------------------------------------------------------------- /paper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/paper/README.md -------------------------------------------------------------------------------- /paper/assets/apa.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/paper/assets/apa.csl -------------------------------------------------------------------------------- /paper/assets/latex.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/paper/assets/latex.template -------------------------------------------------------------------------------- /paper/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/paper/assets/logo.png -------------------------------------------------------------------------------- /paper/experiment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/paper/experiment/README.md -------------------------------------------------------------------------------- /paper/experiment/_1_get_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/paper/experiment/_1_get_data.py -------------------------------------------------------------------------------- /paper/experiment/_2_gen_augmentations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/paper/experiment/_2_gen_augmentations.py -------------------------------------------------------------------------------- /paper/experiment/_3_get_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/paper/experiment/_3_get_features.py -------------------------------------------------------------------------------- /paper/experiment/_4_run_experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/paper/experiment/_4_run_experiment.py -------------------------------------------------------------------------------- /paper/experiment/results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/paper/experiment/results.txt -------------------------------------------------------------------------------- /paper/experiment/sounds/ir_classroom.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/paper/experiment/sounds/ir_classroom.wav -------------------------------------------------------------------------------- /paper/experiment/sounds/ir_smartphone_mic.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/paper/experiment/sounds/ir_smartphone_mic.wav -------------------------------------------------------------------------------- /paper/experiment/sounds/tel_noise.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/paper/experiment/sounds/tel_noise.wav -------------------------------------------------------------------------------- /paper/experiment/sounds/white_noise.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/paper/experiment/sounds/white_noise.wav -------------------------------------------------------------------------------- /paper/experiment/utils/classifiers_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/paper/experiment/utils/classifiers_config.py -------------------------------------------------------------------------------- /paper/experiment/utils/cmat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/paper/experiment/utils/cmat.py -------------------------------------------------------------------------------- /paper/experiment/utils/dataproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/paper/experiment/utils/dataproc.py -------------------------------------------------------------------------------- /paper/figs/bpass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/paper/figs/bpass.png -------------------------------------------------------------------------------- /paper/figs/hpass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/paper/figs/hpass.png -------------------------------------------------------------------------------- /paper/figs/lpass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/paper/figs/lpass.png -------------------------------------------------------------------------------- /paper/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/paper/paper.bib -------------------------------------------------------------------------------- /paper/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/paper/paper.md -------------------------------------------------------------------------------- /paper/paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/paper/paper.pdf -------------------------------------------------------------------------------- /paper/refs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/paper/refs.md -------------------------------------------------------------------------------- /pydiogment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pydiogment/auga.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/pydiogment/auga.py -------------------------------------------------------------------------------- /pydiogment/augf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/pydiogment/augf.py -------------------------------------------------------------------------------- /pydiogment/augt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/pydiogment/augt.py -------------------------------------------------------------------------------- /pydiogment/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pydiogment/utils/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/pydiogment/utils/filters.py -------------------------------------------------------------------------------- /pydiogment/utils/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/pydiogment/utils/io.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_auga.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/tests/test_auga.py -------------------------------------------------------------------------------- /tests/test_augf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/tests/test_augf.py -------------------------------------------------------------------------------- /tests/test_augt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/tests/test_augt.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/testfiles/tel_noise.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/tests/testfiles/tel_noise.wav -------------------------------------------------------------------------------- /tests/testfiles/test.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/tests/testfiles/test.wav -------------------------------------------------------------------------------- /tests/testfiles/test_augmented_-100_noisy.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/tests/testfiles/test_augmented_-100_noisy.wav -------------------------------------------------------------------------------- /tests/testfiles/test_augmented_-20_noisy.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/tests/testfiles/test_augmented_-20_noisy.wav -------------------------------------------------------------------------------- /tests/testfiles/test_augmented_-3_noisy.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/tests/testfiles/test_augmented_-3_noisy.wav -------------------------------------------------------------------------------- /tests/testfiles/test_augmented_-50_noisy.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/tests/testfiles/test_augmented_-50_noisy.wav -------------------------------------------------------------------------------- /tests/testfiles/test_augmented_-6_noisy.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/tests/testfiles/test_augmented_-6_noisy.wav -------------------------------------------------------------------------------- /tests/testfiles/test_augmented_0.9_pass_filtered.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/tests/testfiles/test_augmented_0.9_pass_filtered.wav -------------------------------------------------------------------------------- /tests/testfiles/test_augmented_0.9_toned.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/tests/testfiles/test_augmented_0.9_toned.wav -------------------------------------------------------------------------------- /tests/testfiles/test_augmented_1.1_pass_filtered.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/tests/testfiles/test_augmented_1.1_pass_filtered.wav -------------------------------------------------------------------------------- /tests/testfiles/test_augmented_1.1_toned.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/tests/testfiles/test_augmented_1.1_toned.wav -------------------------------------------------------------------------------- /tests/testfiles/test_augmented_fade_in_out.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/tests/testfiles/test_augmented_fade_in_out.wav -------------------------------------------------------------------------------- /tests/testfiles/test_augmented_left_1_shifted.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/tests/testfiles/test_augmented_left_1_shifted.wav -------------------------------------------------------------------------------- /tests/testfiles/test_augmented_peak_normalized.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/tests/testfiles/test_augmented_peak_normalized.wav -------------------------------------------------------------------------------- /tests/testfiles/test_augmented_randomly_cropped_1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/tests/testfiles/test_augmented_randomly_cropped_1.wav -------------------------------------------------------------------------------- /tests/testfiles/test_augmented_resampled_to_16000.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/tests/testfiles/test_augmented_resampled_to_16000.wav -------------------------------------------------------------------------------- /tests/testfiles/test_augmented_resampled_to_4000.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/tests/testfiles/test_augmented_resampled_to_4000.wav -------------------------------------------------------------------------------- /tests/testfiles/test_augmented_resampled_to_6000.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/tests/testfiles/test_augmented_resampled_to_6000.wav -------------------------------------------------------------------------------- /tests/testfiles/test_augmented_resampled_to_9000.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/tests/testfiles/test_augmented_resampled_to_9000.wav -------------------------------------------------------------------------------- /tests/testfiles/test_augmented_reversed.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/tests/testfiles/test_augmented_reversed.wav -------------------------------------------------------------------------------- /tests/testfiles/test_augmented_right_1_shifted.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/tests/testfiles/test_augmented_right_1_shifted.wav -------------------------------------------------------------------------------- /tests/testfiles/test_augmented_rms_normalized.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/tests/testfiles/test_augmented_rms_normalized.wav -------------------------------------------------------------------------------- /tests/testfiles/test_augmented_slowed.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/tests/testfiles/test_augmented_slowed.wav -------------------------------------------------------------------------------- /tests/testfiles/test_augmented_speeded.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/tests/testfiles/test_augmented_speeded.wav -------------------------------------------------------------------------------- /tests/testfiles/test_augmented_tel_noise_convolved_with_level_0.01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/tests/testfiles/test_augmented_tel_noise_convolved_with_level_0.01.wav -------------------------------------------------------------------------------- /tests/testfiles/test_augmented_tel_noise_convolved_with_level_0.25.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/tests/testfiles/test_augmented_tel_noise_convolved_with_level_0.25.wav -------------------------------------------------------------------------------- /tests/testfiles/test_augmented_tel_noise_convolved_with_level_0.5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/tests/testfiles/test_augmented_tel_noise_convolved_with_level_0.5.wav -------------------------------------------------------------------------------- /tests/testfiles/test_augmented_with_-100_gain.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/tests/testfiles/test_augmented_with_-100_gain.wav -------------------------------------------------------------------------------- /tests/testfiles/test_augmented_with_-25_gain.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/tests/testfiles/test_augmented_with_-25_gain.wav -------------------------------------------------------------------------------- /tests/testfiles/test_augmented_with_-50_gain.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/tests/testfiles/test_augmented_with_-50_gain.wav -------------------------------------------------------------------------------- /tests/testfiles/test_augmented_without_silence.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperKogito/pydiogment/HEAD/tests/testfiles/test_augmented_without_silence.wav --------------------------------------------------------------------------------