A command-line interface for controlling Voicemeeter
| Voicemeeter Version | Status |
|---|---|
| Basic 1.1.2.2 | β Tested |
| Banana 2.1.2.2 | β Tested |
| Potato 3.1.2.2 | β Tested |
- Voicemeeter - Any version (Basic, Banana, or Potato)
- Windows operating system
- Command line environment (PowerShell, CMD, or Terminal)
.\vmrcli.exe [OPTIONS] <api_commands>| Option | Long Option | Description | Example |
|---|---|---|---|
-h |
--help |
Print help message | vmrcli.exe -h |
-v |
--version |
Show version information | vmrcli.exe -v |
-i |
--interactive |
Enable interactive mode | vmrcli.exe -i |
-I |
--no-prompt |
Interactive mode without prompt | vmrcli.exe -I |
-f |
--full-line |
Don't split input on spaces | vmrcli.exe -f |
-k <type> |
--kind <type> |
Launch Voicemeeter GUI | --kind basic, --kind banana, --kind potato |
-l <level> |
--log-level <level> |
Set log level | --log-level DEBUG, --log-level WARN |
-e |
--extra-output |
Enable extra console output | vmrcli.exe -e |
-c <path> |
--config <path> |
Load user configuration | --config "C:\config.txt" |
-m |
--macrobuttons |
Launch MacroButtons app | vmrcli.exe -m |
-s |
--streamerview |
Launch StreamerView app | vmrcli.exe -s |
Note: When using interactive mode (
-i), command line API commands are ignored.
| Syntax | Action | Example |
|---|---|---|
!command |
Toggle boolean values | !strip[0].mute |
command=value |
Set a parameter | strip[0].gain=2.5 |
command+=value |
Increment a parameter | bus[0].gain+=1.2 |
command-=value |
Decrement a parameter | bus[0].gain-=3.8 |
command |
Get current value | strip[0].label |
Tip: Use quotes around values containing spaces:
'strip[0].label="my device"'
Toggle mute, get values, and adjust gain
.\vmrcli.exe -kbasic -lINFO !strip[0].mute strip[0].mute bus[0].gain-=3.8Set labels and print them back
.\vmrcli.exe -kbanana -lDEBUG 'strip[0].label="my podmic"' strip[0].labelConfigure hardware devices with complex names
.\vmrcli.exe -lDEBUG bus[2].mute=1 bus[2].mute 'bus[2].device.wdm="Realtek Digital Output (Realtek(R) Audio)"'Multiple strip configurations in one command
.\vmrcli.exe `
'strip[0].label="my podmic"' strip[0].label !strip[0].mute `
'strip[1].label="my wavemic"' strip[1].label !strip[1].muteConvenient shortcuts for common Voicemeeter operations
| Command | API Equivalent | Description |
|---|---|---|
lock |
command.lock=1 |
π Lock Voicemeeter parameters |
unlock |
command.lock=0 |
π Unlock Voicemeeter parameters |
show |
command.show=1 |
ποΈ Show Voicemeeter interface |
hide |
command.show=0 |
π Hide Voicemeeter interface |
restart |
command.restart=1 |
π Restart Voicemeeter engine |
Available in both direct and interactive modes
Real-time command interface for live audio control
Start interactive session:
.\vmrcli.exe -iInteractive prompt:
Interactive mode enabled. Enter 'Q' to exit.
>>Important: Command line API arguments are ignored when using
-i
Automate complex audio setups with script files
From file content:
.\vmrcli.exe -lDEBUG $(Get-Content .\example_commands.txt)Via pipeline:
$(Get-Content .\example_commands.txt) | .\vmrcli.exe -lDEBUG -I| Feature | Syntax | Example |
|---|---|---|
| Multiple commands per line | Space, ;, or , separated |
strip[0].mute=1;bus[0].gain+=2 |
| Comments | Lines starting with # |
# This is a comment |
Compile from source using GNU Make
- GNU Make
- GCC compiler (recommended)
- Windows development environment
# Standard build
make
# Disable colored logging
make LOG_USE_COLOR=no
# Clean build artifacts
make cleanPre-built binaries are available in Releases with coloured logging enabled
- Voicemeeter Remote C API - Complete API reference
This project is licensed under the MIT License - see the LICENSE file for details.