├── INSTALL.md ├── LICENSE ├── README.md ├── include ├── .gitignore └── BeatDetection.h └── samples ├── .gitignore ├── cmake └── .gitignore └── src └── .gitignore /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdduke/beatdetection/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdduke/beatdetection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdduke/beatdetection/HEAD/README.md -------------------------------------------------------------------------------- /include/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /include/BeatDetection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdduke/beatdetection/HEAD/include/BeatDetection.h -------------------------------------------------------------------------------- /samples/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/cmake/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/src/.gitignore: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------