Skip to content

jergason/Vocoder

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

94 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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) {
});

About

Naive WebAudio Vocoder

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%