aubiojs
TypeScript icon, indicating that this package has built-in type declarations

0.2.1 • Public • Published

aubiojs npm-badge build-badge

Online Demo

aubiojs is a real-time audio processing library based on aubio, now including:

  • pitch detection
  • tempo detection

Usage

Web

<script src="https://unpkg.com/aubiojs"></script>
<script>
  aubio().then(({ Tempo }) => {
    const tempo = new Tempo(bufferSize, hopSize, sampleRate);
    tempo.do(audioBuffer);
    const bpm = tempo.getBpm();
  });
</script>

Node

npm i aubiojs
import aubio from "aubiojs";

const { Tempo } = await aubio();
const tempo = new Tempo(bufferSize, hopSize, sampleRate);
tempo.do(audioBuffer);
const bpm = tempo.getBpm();

Build

This project uses emscripten to compile aubio, make sure you have installed.

npm run build

Readme

Keywords

none

Package Sidebar

Install

npm i aubiojs

Weekly Downloads

257

Version

0.2.1

License

none

Unpacked Size

427 kB

Total Files

6

Last publish

Collaborators

  • 7c00