Skip to content

A (thin) wrapper for MrsWatson that allow you to use node.js to process audio files with VST plugins

License

Notifications You must be signed in to change notification settings

simudream/node-vst-host

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

node-vst-host

https://github.com/ZECTBynmo/node-vst-host

A (thin) wrapper for [MrsWatson] (https://github.com/teragonaudio/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", ["plugin1", "plugin2"] );

About

A (thin) wrapper for MrsWatson that allow you to use node.js to process audio files with VST plugins

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%