node-vst-host

0.0.3 • Public • Published

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", ["pluginName1", "pluginName2"] );

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.0.3
    6
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.0.3
    6
  • 0.0.2
    1
  • 0.0.1
    1

Package Sidebar

Install

npm i node-vst-host

Weekly Downloads

6

Version

0.0.3

License

MIT (with GPL dependencies)

Last publish

Collaborators

  • mvegeto