sini / bpm-detective

Detects the BPM of a song or audio sample

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

bpm-detective

Detects the BPM of a song or audio sample

This module uses the Web Audio API to try and detect the BPM of a given sound. You can find more on the implementation and how it works by reading the blog post Beat Detection Using JavaScript and the Web Audio API which happens to be where I got most of the code.

Install

$ npm install --save bpm-detective

Usage

The module exports one function. The function takes an AudioBuffer as its only argument. It returns the detected BPM. If the sample was too short or if, for any other reason, the detection failed, the method throws an error.

import detect from 'bpm-detective';

const AudioContext = window.AudioContext || window.webkitAudioContext;
let context = new AudioContext();

// Fetch some audio file
fetch('some/audio/file.wav')
  // Get response as ArrayBuffer
  .then(response => response.arrayBuffer())
  .then(buffer => {
    // Decode audio into an AudioBuffer
    return new Promise((resolve, reject) => {
      context.decodeAudioData(buffer, resolve, reject);
    });
  })
  // Run detection
  .then(buffer => {
    try {
      const bpm = detect(buffer);
      alert(`Detected BPM: ${ bpm }`);
    } catch (err) {
      console.error(err);
    }
  );

Disclaimer

The detection presumes you are working with dance(-ish) kind of music and as so looks only in the 90-180 BPM spectrum.

License

MIT

About

Detects the BPM of a song or audio sample


Languages

Language:JavaScript 100.0%