Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mikolalysenko/detect-pitch

Detects the pitch of an audio snippet
https://github.com/mikolalysenko/detect-pitch

Last synced: about 2 months ago
JSON representation

Detects the pitch of an audio snippet

Awesome Lists containing this project

README

        

detect-pitch
============
Detects the pitch of a signal using the autocorrelation method.

## Example

```javascript
var detectPitch = require('detect-pitch')

var n = 1024
var ω = 2.0 * Math.PI / n

//Initialize signal
var signal = new Float32Array(n)
for(var i=0; i