0.1.0 • Published 7 years ago

webaudio-helpers v0.1.0

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

webaudio-helpers

build status Coverage Status Known Vulnerabilities NPM version npm.io

A set of helpers working with WebAudio API mainly with the purpose of visualization.

Install

yarn add webaudio-helpers

Usage

import {FrequencyReducer} from 'webaudio-helpers'

const reducer = new FrequencyReducer({sampleRate: 500})

reducer.on('complete', data => {
    // Use your favorite graph tools to
    // visualize the data
})

reducer.load('/audio.mp3')

Docs

Run yarn docs