├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── docs ├── Makefile ├── api.rst ├── changes.rst ├── conf.py ├── examples.rst ├── index.rst ├── installation.rst ├── make.bat ├── requirements.txt └── tutorial.rst ├── scaper ├── __init__.py ├── audio.py ├── core.py ├── scaper_exceptions.py ├── scaper_warnings.py ├── util.py └── version.py ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── create_regression_data.py ├── data ├── audio │ ├── background │ │ ├── park │ │ │ └── 268903__yonts__city-park-tel-aviv-israel.wav │ │ ├── restaurant │ │ │ └── 207208__jormarp__high-street-of-gandia-valencia-spain_trimmed.wav │ │ └── street │ │ │ ├── 150993__saphe__street-scene-1.wav │ │ │ └── 173955__saphe__street-scene-3_trimmed.wav │ ├── foreground │ │ ├── car_horn │ │ │ ├── 17-CAR-Rolls-Royce-Horn-2.wav │ │ │ └── 17-CAR-Rolls-Royce-Horn.wav │ │ ├── human_voice │ │ │ ├── 42-Human-Vocal-Voice-all-aboard_edit.wav │ │ │ ├── 42-Human-Vocal-Voice-taxi-1_edit.wav │ │ │ └── 42-Human-Vocal-Voice-taxi-2_edit.wav │ │ └── siren │ │ │ └── 69-Siren-1.wav │ └── short_background │ │ └── noise │ │ └── noise-free-sound-0145.wav ├── audio_alt_path │ ├── background │ │ ├── park │ │ │ └── 268903__yonts__city-park-tel-aviv-israel.wav │ │ ├── restaurant │ │ │ └── 207208__jormarp__high-street-of-gandia-valencia-spain_trimmed.wav │ │ └── street │ │ │ ├── 150993__saphe__street-scene-1.wav │ │ │ └── 173955__saphe__street-scene-3_trimmed.wav │ └── foreground │ │ ├── car_horn │ │ ├── 17-CAR-Rolls-Royce-Horn-2.wav │ │ └── 17-CAR-Rolls-Royce-Horn.wav │ │ ├── human_voice │ │ ├── 42-Human-Vocal-Voice-all-aboard_edit.wav │ │ ├── 42-Human-Vocal-Voice-taxi-1_edit.wav │ │ └── 42-Human-Vocal-Voice-taxi-2_edit.wav │ │ └── siren │ │ └── 69-Siren-1.wav ├── lufs │ └── dogbark.wav └── regression │ ├── bgonly_soundscape_20170928.jams │ ├── bgonly_soundscape_20170928.txt │ ├── bgonly_soundscape_20170928.wav │ ├── bgonly_soundscape_20190326_22050.jams │ ├── bgonly_soundscape_20190326_22050.txt │ ├── bgonly_soundscape_20190326_22050.wav │ ├── bgonly_soundscape_20200501_22050.jams │ ├── bgonly_soundscape_20200501_22050.txt │ ├── bgonly_soundscape_20200501_22050.wav │ ├── bgonly_soundscape_20200501_44100.jams │ ├── bgonly_soundscape_20200501_44100.txt │ ├── bgonly_soundscape_20200501_44100.wav │ ├── reverb_soundscape_20170928.jams │ ├── reverb_soundscape_20170928.txt │ ├── reverb_soundscape_20170928.wav │ ├── reverb_soundscape_20190326_22050.jams │ ├── reverb_soundscape_20190326_22050.txt │ ├── reverb_soundscape_20190326_22050.wav │ ├── reverb_soundscape_20200501_22050.jams │ ├── reverb_soundscape_20200501_22050.txt │ ├── reverb_soundscape_20200501_22050.wav │ ├── reverb_soundscape_20200501_44100.jams │ ├── reverb_soundscape_20200501_44100.txt │ ├── reverb_soundscape_20200501_44100.wav │ ├── scaper_133_off_by_one_regression_test.jams │ ├── soundscape_20170928.jams │ ├── soundscape_20170928.txt │ ├── soundscape_20170928.wav │ ├── soundscape_20190326_22050.jams │ ├── soundscape_20190326_22050.txt │ ├── soundscape_20190326_22050.wav │ ├── soundscape_20200501_22050.jams │ ├── soundscape_20200501_22050.txt │ ├── soundscape_20200501_22050.wav │ ├── soundscape_20200501_44100.jams │ ├── soundscape_20200501_44100.txt │ ├── soundscape_20200501_44100.wav │ └── soundscape_20200501_44100_no_clipping_normalization_fields.jams ├── profile_results.csv ├── profile_speed.py ├── test_audio.py ├── test_core.py ├── test_util.py └── tmp ├── dummy_outfile.jams ├── dummy_output_audio.wav └── test_jams2.jams /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/changes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/docs/changes.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/docs/examples.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/docs/tutorial.rst -------------------------------------------------------------------------------- /scaper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/scaper/__init__.py -------------------------------------------------------------------------------- /scaper/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/scaper/audio.py -------------------------------------------------------------------------------- /scaper/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/scaper/core.py -------------------------------------------------------------------------------- /scaper/scaper_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/scaper/scaper_exceptions.py -------------------------------------------------------------------------------- /scaper/scaper_warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/scaper/scaper_warnings.py -------------------------------------------------------------------------------- /scaper/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/scaper/util.py -------------------------------------------------------------------------------- /scaper/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/scaper/version.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/create_regression_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/create_regression_data.py -------------------------------------------------------------------------------- /tests/data/audio/background/park/268903__yonts__city-park-tel-aviv-israel.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/audio/background/park/268903__yonts__city-park-tel-aviv-israel.wav -------------------------------------------------------------------------------- /tests/data/audio/background/restaurant/207208__jormarp__high-street-of-gandia-valencia-spain_trimmed.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/audio/background/restaurant/207208__jormarp__high-street-of-gandia-valencia-spain_trimmed.wav -------------------------------------------------------------------------------- /tests/data/audio/background/street/150993__saphe__street-scene-1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/audio/background/street/150993__saphe__street-scene-1.wav -------------------------------------------------------------------------------- /tests/data/audio/background/street/173955__saphe__street-scene-3_trimmed.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/audio/background/street/173955__saphe__street-scene-3_trimmed.wav -------------------------------------------------------------------------------- /tests/data/audio/foreground/car_horn/17-CAR-Rolls-Royce-Horn-2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/audio/foreground/car_horn/17-CAR-Rolls-Royce-Horn-2.wav -------------------------------------------------------------------------------- /tests/data/audio/foreground/car_horn/17-CAR-Rolls-Royce-Horn.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/audio/foreground/car_horn/17-CAR-Rolls-Royce-Horn.wav -------------------------------------------------------------------------------- /tests/data/audio/foreground/human_voice/42-Human-Vocal-Voice-all-aboard_edit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/audio/foreground/human_voice/42-Human-Vocal-Voice-all-aboard_edit.wav -------------------------------------------------------------------------------- /tests/data/audio/foreground/human_voice/42-Human-Vocal-Voice-taxi-1_edit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/audio/foreground/human_voice/42-Human-Vocal-Voice-taxi-1_edit.wav -------------------------------------------------------------------------------- /tests/data/audio/foreground/human_voice/42-Human-Vocal-Voice-taxi-2_edit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/audio/foreground/human_voice/42-Human-Vocal-Voice-taxi-2_edit.wav -------------------------------------------------------------------------------- /tests/data/audio/foreground/siren/69-Siren-1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/audio/foreground/siren/69-Siren-1.wav -------------------------------------------------------------------------------- /tests/data/audio/short_background/noise/noise-free-sound-0145.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/audio/short_background/noise/noise-free-sound-0145.wav -------------------------------------------------------------------------------- /tests/data/audio_alt_path/background/park/268903__yonts__city-park-tel-aviv-israel.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/audio_alt_path/background/park/268903__yonts__city-park-tel-aviv-israel.wav -------------------------------------------------------------------------------- /tests/data/audio_alt_path/background/restaurant/207208__jormarp__high-street-of-gandia-valencia-spain_trimmed.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/audio_alt_path/background/restaurant/207208__jormarp__high-street-of-gandia-valencia-spain_trimmed.wav -------------------------------------------------------------------------------- /tests/data/audio_alt_path/background/street/150993__saphe__street-scene-1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/audio_alt_path/background/street/150993__saphe__street-scene-1.wav -------------------------------------------------------------------------------- /tests/data/audio_alt_path/background/street/173955__saphe__street-scene-3_trimmed.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/audio_alt_path/background/street/173955__saphe__street-scene-3_trimmed.wav -------------------------------------------------------------------------------- /tests/data/audio_alt_path/foreground/car_horn/17-CAR-Rolls-Royce-Horn-2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/audio_alt_path/foreground/car_horn/17-CAR-Rolls-Royce-Horn-2.wav -------------------------------------------------------------------------------- /tests/data/audio_alt_path/foreground/car_horn/17-CAR-Rolls-Royce-Horn.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/audio_alt_path/foreground/car_horn/17-CAR-Rolls-Royce-Horn.wav -------------------------------------------------------------------------------- /tests/data/audio_alt_path/foreground/human_voice/42-Human-Vocal-Voice-all-aboard_edit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/audio_alt_path/foreground/human_voice/42-Human-Vocal-Voice-all-aboard_edit.wav -------------------------------------------------------------------------------- /tests/data/audio_alt_path/foreground/human_voice/42-Human-Vocal-Voice-taxi-1_edit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/audio_alt_path/foreground/human_voice/42-Human-Vocal-Voice-taxi-1_edit.wav -------------------------------------------------------------------------------- /tests/data/audio_alt_path/foreground/human_voice/42-Human-Vocal-Voice-taxi-2_edit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/audio_alt_path/foreground/human_voice/42-Human-Vocal-Voice-taxi-2_edit.wav -------------------------------------------------------------------------------- /tests/data/audio_alt_path/foreground/siren/69-Siren-1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/audio_alt_path/foreground/siren/69-Siren-1.wav -------------------------------------------------------------------------------- /tests/data/lufs/dogbark.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/lufs/dogbark.wav -------------------------------------------------------------------------------- /tests/data/regression/bgonly_soundscape_20170928.jams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/regression/bgonly_soundscape_20170928.jams -------------------------------------------------------------------------------- /tests/data/regression/bgonly_soundscape_20170928.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/regression/bgonly_soundscape_20170928.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/regression/bgonly_soundscape_20170928.wav -------------------------------------------------------------------------------- /tests/data/regression/bgonly_soundscape_20190326_22050.jams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/regression/bgonly_soundscape_20190326_22050.jams -------------------------------------------------------------------------------- /tests/data/regression/bgonly_soundscape_20190326_22050.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/regression/bgonly_soundscape_20190326_22050.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/regression/bgonly_soundscape_20190326_22050.wav -------------------------------------------------------------------------------- /tests/data/regression/bgonly_soundscape_20200501_22050.jams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/regression/bgonly_soundscape_20200501_22050.jams -------------------------------------------------------------------------------- /tests/data/regression/bgonly_soundscape_20200501_22050.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/regression/bgonly_soundscape_20200501_22050.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/regression/bgonly_soundscape_20200501_22050.wav -------------------------------------------------------------------------------- /tests/data/regression/bgonly_soundscape_20200501_44100.jams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/regression/bgonly_soundscape_20200501_44100.jams -------------------------------------------------------------------------------- /tests/data/regression/bgonly_soundscape_20200501_44100.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/regression/bgonly_soundscape_20200501_44100.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/regression/bgonly_soundscape_20200501_44100.wav -------------------------------------------------------------------------------- /tests/data/regression/reverb_soundscape_20170928.jams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/regression/reverb_soundscape_20170928.jams -------------------------------------------------------------------------------- /tests/data/regression/reverb_soundscape_20170928.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/regression/reverb_soundscape_20170928.txt -------------------------------------------------------------------------------- /tests/data/regression/reverb_soundscape_20170928.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/regression/reverb_soundscape_20170928.wav -------------------------------------------------------------------------------- /tests/data/regression/reverb_soundscape_20190326_22050.jams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/regression/reverb_soundscape_20190326_22050.jams -------------------------------------------------------------------------------- /tests/data/regression/reverb_soundscape_20190326_22050.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/regression/reverb_soundscape_20190326_22050.txt -------------------------------------------------------------------------------- /tests/data/regression/reverb_soundscape_20190326_22050.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/regression/reverb_soundscape_20190326_22050.wav -------------------------------------------------------------------------------- /tests/data/regression/reverb_soundscape_20200501_22050.jams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/regression/reverb_soundscape_20200501_22050.jams -------------------------------------------------------------------------------- /tests/data/regression/reverb_soundscape_20200501_22050.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/regression/reverb_soundscape_20200501_22050.txt -------------------------------------------------------------------------------- /tests/data/regression/reverb_soundscape_20200501_22050.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/regression/reverb_soundscape_20200501_22050.wav -------------------------------------------------------------------------------- /tests/data/regression/reverb_soundscape_20200501_44100.jams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/regression/reverb_soundscape_20200501_44100.jams -------------------------------------------------------------------------------- /tests/data/regression/reverb_soundscape_20200501_44100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/regression/reverb_soundscape_20200501_44100.txt -------------------------------------------------------------------------------- /tests/data/regression/reverb_soundscape_20200501_44100.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/regression/reverb_soundscape_20200501_44100.wav -------------------------------------------------------------------------------- /tests/data/regression/scaper_133_off_by_one_regression_test.jams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/regression/scaper_133_off_by_one_regression_test.jams -------------------------------------------------------------------------------- /tests/data/regression/soundscape_20170928.jams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/regression/soundscape_20170928.jams -------------------------------------------------------------------------------- /tests/data/regression/soundscape_20170928.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/regression/soundscape_20170928.txt -------------------------------------------------------------------------------- /tests/data/regression/soundscape_20170928.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/regression/soundscape_20170928.wav -------------------------------------------------------------------------------- /tests/data/regression/soundscape_20190326_22050.jams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/regression/soundscape_20190326_22050.jams -------------------------------------------------------------------------------- /tests/data/regression/soundscape_20190326_22050.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/regression/soundscape_20190326_22050.txt -------------------------------------------------------------------------------- /tests/data/regression/soundscape_20190326_22050.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/regression/soundscape_20190326_22050.wav -------------------------------------------------------------------------------- /tests/data/regression/soundscape_20200501_22050.jams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/regression/soundscape_20200501_22050.jams -------------------------------------------------------------------------------- /tests/data/regression/soundscape_20200501_22050.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/regression/soundscape_20200501_22050.txt -------------------------------------------------------------------------------- /tests/data/regression/soundscape_20200501_22050.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/regression/soundscape_20200501_22050.wav -------------------------------------------------------------------------------- /tests/data/regression/soundscape_20200501_44100.jams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/regression/soundscape_20200501_44100.jams -------------------------------------------------------------------------------- /tests/data/regression/soundscape_20200501_44100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/regression/soundscape_20200501_44100.txt -------------------------------------------------------------------------------- /tests/data/regression/soundscape_20200501_44100.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/regression/soundscape_20200501_44100.wav -------------------------------------------------------------------------------- /tests/data/regression/soundscape_20200501_44100_no_clipping_normalization_fields.jams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/data/regression/soundscape_20200501_44100_no_clipping_normalization_fields.jams -------------------------------------------------------------------------------- /tests/profile_results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/profile_results.csv -------------------------------------------------------------------------------- /tests/profile_speed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/profile_speed.py -------------------------------------------------------------------------------- /tests/test_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/test_audio.py -------------------------------------------------------------------------------- /tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/test_core.py -------------------------------------------------------------------------------- /tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/test_util.py -------------------------------------------------------------------------------- /tests/tmp/dummy_outfile.jams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/tmp/dummy_outfile.jams -------------------------------------------------------------------------------- /tests/tmp/dummy_output_audio.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/tmp/dummy_output_audio.wav -------------------------------------------------------------------------------- /tests/tmp/test_jams2.jams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinsalamon/scaper/HEAD/tests/tmp/test_jams2.jams --------------------------------------------------------------------------------