1.0.6 • Published 6 months ago

bpm-detector v1.0.6

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

6 months ago

1.0.5

6 months ago

1.0.4

6 months ago

1.0.3

6 months ago

1.0.2

6 months ago

1.0.1

6 months ago

1.0.0

6 months ago