├── .gitignore ├── LICENSE ├── README.md ├── demo ├── Arpeggio.ogg └── demo.js ├── package.json ├── pitch.js └── test ├── multi.js ├── noise.js └── test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikolalysenko/detect-pitch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikolalysenko/detect-pitch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikolalysenko/detect-pitch/HEAD/README.md -------------------------------------------------------------------------------- /demo/Arpeggio.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikolalysenko/detect-pitch/HEAD/demo/Arpeggio.ogg -------------------------------------------------------------------------------- /demo/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikolalysenko/detect-pitch/HEAD/demo/demo.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikolalysenko/detect-pitch/HEAD/package.json -------------------------------------------------------------------------------- /pitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikolalysenko/detect-pitch/HEAD/pitch.js -------------------------------------------------------------------------------- /test/multi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikolalysenko/detect-pitch/HEAD/test/multi.js -------------------------------------------------------------------------------- /test/noise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikolalysenko/detect-pitch/HEAD/test/noise.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikolalysenko/detect-pitch/HEAD/test/test.js --------------------------------------------------------------------------------