Voicemeeter-api is a Node.js RESTful API to control Voicemeeter (or Voicemeeter Banana).
Now you can do an HTTP request with your prefered software or library
$ curl -X POST -d '{"mute":true}' http://localhost:8080/strips/1
- Url
/strips/{stripId}
- Methods
POST
- Body
{
"mute": Boolean,
"mono": Boolean,
"solo": Boolean,
"gain": Number,
"comp": Number,
"gate": Number
}
All the attributes are optional, only those present in the body are set.
- Response
{
"error": false
}
- Url
/buses/{busId}
- Methods
POST
- Body
{
"mute": Boolean,
"mono": Boolean,
"gain": Number
}
All the attributes are optional, only those present in the body are set.
- Response
{
"error": false
}
- Web page to use and test easily this API
- Implement all methods available in voicemeeter-remote
- Build for windows 32bit
Want to contribute? Great!
Fork the project make your change then do a pull request.
voicemeeter-remote
=> Interact with Voicemeeter instance
express
=> Handle HTTP request
body-parser
=> Parse the JSON body of the HTTP request
MIT