voicemeeter-remote-potato

0.1.0 • Public • Published

Voicemeeter-remote

Voicemeeter-remote is a Node.js wrapper for the official voicemeeterRemote DLL available in the installation directory of Voicemeeter, Voicemeeter banana, or Voicemeeter potato. More informations about the DLL is available here

How to use it ?

First install it

$ npm i voicemeeter-remote-potato --save

Then use it in your own program

const voicemeeter = require('voicemeeter-remote-potato');
 
voicemeeter.init().then(()=>{
    voicemeeter.login();
})

After the login method is successful you can use all the methods to interact with the instance of Voicemeeter

You can :

  • Connect and disconnect with the Voicemeeter software
// Connect
voicemeeter.login();
// Disconnect
voicemeeter.logout();
  • Set all the parameters like : 'mono', 'solo', 'mute', 'gain', 'gate', 'comp' for each Strip and Bus
// 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
// 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)

Todos

  • Parameters Getters
  • Stream Getters
  • 32bit compatibility
  • Implement all methods available in the DLL

Development

Want to contribute? Great!

Fork the project make your change then do a pull request.

Dependencies

ffi-napi => Read and execute the VoicemeeterRemote DLL

ref-array => Create array (*pointer) for ffi to return string from the DLL

winreg => Read the windows registery to find Voicemeeter installation folder and the DLL

Usage

Make yours and send me the link

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i voicemeeter-remote-potato

Weekly Downloads

1

Version

0.1.0

License

MIT

Unpacked Size

14.2 kB

Total Files

4

Last publish

Collaborators

  • weeryan17