1.0.6 • Published 12 months ago

bpm-detector v1.0.6

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

12 months ago

1.0.5

12 months ago

1.0.4

12 months ago

1.0.3

12 months ago

1.0.2

12 months ago

1.0.1

12 months ago

1.0.0

12 months ago