Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@


# node-vst-host

https://github.com/ZECTBynmo/node-vst-host
Expand All @@ -17,12 +19,12 @@ var VSTHost = require("./node-vst-host").host;

var host = new VSTHost();

// Print our a list of the available plugins
// Print out 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"] );
```
```