1.0.6 • Published 4 months ago

bpm-detector v1.0.6

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months 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

4 months ago

1.0.5

4 months ago

1.0.4

4 months ago

1.0.3

4 months ago

1.0.2

4 months ago

1.0.1

4 months ago

1.0.0

4 months ago