0.0.3 • Published 12 years ago

node-vst-host v0.0.3

Weekly downloads
3
License
-
Repository
-
Last release
12 years ago

node-vst-host

A (thin) wrapper for MrsWatson that allows you to process audio files using VST plugins

Installation

npm install node-vst-host

Usage

var VSTHost = require("./node-vst-host").host;

var host = new VSTHost();

// Print our a list of the available plugins
host.listPlugins( function(names) {
	console.log( "Available Plugins");
	console.log( names );
});

// Process an audio file with a VST plugin
host.processAudio( "C:/inputFile.wav", "C:/outputFile.wav", ["pluginName"] );
0.0.3

12 years ago

0.0.2

12 years ago

0.0.1

12 years ago