0.1.1 • Published 10 years ago

vocoder v0.1.1

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

Vocoder

This is a port of Chris Wilson's Vocoder project with all the UI stripped out and modified to work with Browserify.

Basically, you can control the pitch of a vocal track. (ノ◕ヮ◕)ノ*:・゚✧ M A G I C AL (ಥ﹏ಥ)

Installation

npm install --save vocoder

Usage

###function vocoder(audioContext, carrierBuffer, modulatorBuffer)

Start the vocoder playing the modulatorBuffer mixed in with the carrierBuffer. These are both AudioBuffers.

Example

var vocoder = require('vocoder');
var load = require('webaudio-buffer-loader');

var ctx = new AudioContext();

load(['/carrier.ogg', '/modulator.ogg'], ctx, function(err, buffers) {
});
0.1.1

10 years ago