1.0.6 • Published 7 months ago

bpm-detector v1.0.6

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

7 months ago

1.0.5

7 months ago

1.0.4

7 months ago

1.0.3

7 months ago

1.0.2

7 months ago

1.0.1

7 months ago

1.0.0

7 months ago