aves.js
v0.0.4
Published
Audio spectrum analyzer written in type script. Developed using web audio api.
Downloads
36
Readme
aves
Audio spectrum analyzer written in type script. Developed using web audio api.

Installing
Using npm:
$ npm install aves.jsUsing yarn:
$ yarn add aves.jsUsing CDN:
<script src="https://unpkg.com/aves.js/dist/index.js"></script>Example
const Aves = require('Aves.js');
aves = new Aves()
// Decode asynchronously
// Use ArrayBuffer for input audio
aves.loadAudio(audioData).then(() => {
const canvasElm = document.querySelector('#canvas')
const canvasWidth = 1000
const canvasHeight = 500
aves.createSpectrumAnalyser(canvasElm, canvasWidth, canvasHeight)
// You got a nice spectrum analyser
aves.start()
})