1.1.3 • Published 4 years ago

audio-biquad v1.1.3

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

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.

1.1.3

4 years ago

1.1.2

8 years ago

1.1.1

8 years ago

1.1.0

8 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago