voicemeeter-remote
Version:
A Node.js voicemeeter remote wrapper
83 lines (62 loc) • 2.36 kB
Markdown
Voicemeeter-remote is a Node.js wrapper for the official voicemeeterRemote DLL available in the installation directory of [Voicemeeter][voicemeeter] ( or [Voicemeeter banana][voicemeeter-banana] or [Voicemeeter potato][voicemeeter-potato] ). More informations about the DLL is available [here](https://forum.vb-audio.com/viewtopic.php?f=8&t=346)
```sh
$ npm i voicemeeter-remote --save
```
```js
const voicemeeter = require("voicemeeter-remote");
voicemeeter.init().then(() => {
voicemeeter.login();
});
```
After the login method is successful you can use all the methods to interact with the instance of Voicemeeter
- Connect and disconnect with the Voicemeeter software
```js
// Connect
voicemeeter.login();
// Disconnect
voicemeeter.logout();
```
- Set all the parameters like : 'mono', 'solo', 'mute', 'gain', 'gate', 'comp' for each Strip and Bus
```js
// Set the gain of the first Strip to -10db
voicemeeter.setStripGain(0, -10);
// Mute the second Bus
voicemeeter.setBusMute(1, true);
```
- Get all input/output devices
```js
// Get all devices from the DLL
// They will be stored into an array in the voicemeeter-remote instance
voicemeeter.updateDeviceList();
// Get input devices
console.log(voicemeeter.inputDevices);
// Get output devices
console.log(voicemeeter.outputDevices);
```
- Stream Getters
- 32bit compatibility
- Implement all methods available in the DLL
Want to contribute? Great!
Fork the project make your change then do a pull request.
[`koffi`][koffi] => Read and execute the VoicemeeterRemote DLL
[`winreg`][winreg] => Read the windows registery to find Voicemeeter installation folder and the DLL
[`voicemeeter-api`][voicemeeter-api] => A RESTfull API to control voicemeeter with HTTP request
----
MIT
[]: <https://www.vb-audio.com/Voicemeeter/index.htm>
[]: <https://www.vb-audio.com/Voicemeeter/banana.htm>
[]: <https://www.vb-audio.com/Voicemeeter/potato.htm>
[]: <https://github.com/Mikatux/voicemeeter-api>
[]: <https://www.npmjs.com/package/koffi>
[]: <https://www.npmjs.com/package/winreg>