This package has been deprecated

Author message:

That is just reference implementation copied from chrome source. Use as example, in production better come up with your own.

audio-biquad

1.1.3 • Public • Published

audio-biquad Build Status stable

Biquad filter stream. API is similar to BiquadFilterNode.

npm install audio-biquad

var BiquadFilter = require('audio-biquad');
var Speaker = require('audio-speaker');
var Generator = require('audio-generator');
 
Generator(function () {
    return Math.random() * 2 - 1;
}, {
    duration: 2
})
.pipe(BiquadFilter({
    type: 'bandpass',
    frequency: 440,
    Q: 100,
    gain: 25
}))
.pipe(Speaker());

BiquadFilterNode — all the options for the filters.
BiquadFilterNode chromium source — source code inspiration.
EQ Cookbook — description of all the kinds of filters.

/audio-biquad/

    Package Sidebar

    Install

    npm i audio-biquad

    Weekly Downloads

    20

    Version

    1.1.3

    License

    MIT

    Unpacked Size

    16 kB

    Total Files

    6

    Last publish

    Collaborators

    • dfcreative
    • dy