├── .coveragerc ├── .gitignore ├── .travis.yml ├── .travis_dependencies.sh ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── amen ├── __init__.py ├── audio.py ├── deformation.py ├── echo_nest_converter.py ├── example_audio │ ├── amen-mono.wav │ └── amen.wav ├── exceptions.py ├── feature.py ├── synthesize.py ├── timing.py ├── utils.py └── version.py ├── docs ├── Makefile ├── api.rst ├── conf.py ├── index.rst └── requirements.txt ├── examples ├── echo_nest_json.py ├── iterate.py ├── iterate_feature.py └── reverse.py ├── setup.py └── tests ├── test_audio.py ├── test_audio_features.py ├── test_audio_timings.py ├── test_deformation.py ├── test_echo_nest_converter.py ├── test_feature.py ├── test_synthesize.py ├── test_timing.py └── test_utils.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmic-music-exploration/amen/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmic-music-exploration/amen/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmic-music-exploration/amen/HEAD/.travis.yml -------------------------------------------------------------------------------- /.travis_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmic-music-exploration/amen/HEAD/.travis_dependencies.sh -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmic-music-exploration/amen/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmic-music-exploration/amen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmic-music-exploration/amen/HEAD/README.md -------------------------------------------------------------------------------- /amen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmic-music-exploration/amen/HEAD/amen/__init__.py -------------------------------------------------------------------------------- /amen/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmic-music-exploration/amen/HEAD/amen/audio.py -------------------------------------------------------------------------------- /amen/deformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmic-music-exploration/amen/HEAD/amen/deformation.py -------------------------------------------------------------------------------- /amen/echo_nest_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmic-music-exploration/amen/HEAD/amen/echo_nest_converter.py -------------------------------------------------------------------------------- /amen/example_audio/amen-mono.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmic-music-exploration/amen/HEAD/amen/example_audio/amen-mono.wav -------------------------------------------------------------------------------- /amen/example_audio/amen.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmic-music-exploration/amen/HEAD/amen/example_audio/amen.wav -------------------------------------------------------------------------------- /amen/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmic-music-exploration/amen/HEAD/amen/exceptions.py -------------------------------------------------------------------------------- /amen/feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmic-music-exploration/amen/HEAD/amen/feature.py -------------------------------------------------------------------------------- /amen/synthesize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmic-music-exploration/amen/HEAD/amen/synthesize.py -------------------------------------------------------------------------------- /amen/timing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmic-music-exploration/amen/HEAD/amen/timing.py -------------------------------------------------------------------------------- /amen/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmic-music-exploration/amen/HEAD/amen/utils.py -------------------------------------------------------------------------------- /amen/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmic-music-exploration/amen/HEAD/amen/version.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmic-music-exploration/amen/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmic-music-exploration/amen/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmic-music-exploration/amen/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmic-music-exploration/amen/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | numpydoc>=0.5 2 | six 3 | -------------------------------------------------------------------------------- /examples/echo_nest_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmic-music-exploration/amen/HEAD/examples/echo_nest_json.py -------------------------------------------------------------------------------- /examples/iterate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmic-music-exploration/amen/HEAD/examples/iterate.py -------------------------------------------------------------------------------- /examples/iterate_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmic-music-exploration/amen/HEAD/examples/iterate_feature.py -------------------------------------------------------------------------------- /examples/reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmic-music-exploration/amen/HEAD/examples/reverse.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmic-music-exploration/amen/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmic-music-exploration/amen/HEAD/tests/test_audio.py -------------------------------------------------------------------------------- /tests/test_audio_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmic-music-exploration/amen/HEAD/tests/test_audio_features.py -------------------------------------------------------------------------------- /tests/test_audio_timings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmic-music-exploration/amen/HEAD/tests/test_audio_timings.py -------------------------------------------------------------------------------- /tests/test_deformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmic-music-exploration/amen/HEAD/tests/test_deformation.py -------------------------------------------------------------------------------- /tests/test_echo_nest_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmic-music-exploration/amen/HEAD/tests/test_echo_nest_converter.py -------------------------------------------------------------------------------- /tests/test_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmic-music-exploration/amen/HEAD/tests/test_feature.py -------------------------------------------------------------------------------- /tests/test_synthesize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmic-music-exploration/amen/HEAD/tests/test_synthesize.py -------------------------------------------------------------------------------- /tests/test_timing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmic-music-exploration/amen/HEAD/tests/test_timing.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorithmic-music-exploration/amen/HEAD/tests/test_utils.py --------------------------------------------------------------------------------