1.0.6 • Published 1 year ago

bpm-detector v1.0.6

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

BPM Detector

A simple JavaScript library for detecting BPM (beats per minute) from audio files.

Installation

npm install bpm-detector
const detectBPM = require('bpm-detector');
const fs = require('fs');

const audioBuffer = fs.readFileSync('song.wav');

detectBPM(audioBuffer).then((bpm) => {
    console.log('Detected BPM:', bpm);
});
1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago