mirror of
https://github.com/onyx-and-iris/voicemeeter-api-powershell.git
synced 2025-01-18 13:20:47 +00:00
29 lines
580 B
Markdown
29 lines
580 B
Markdown
## About
|
|
|
|
Demonstrates how to sync Voicemeeter states with OBS scene switches.
|
|
|
|
## Requirements
|
|
|
|
- [OBS Studio 28+](https://obsproject.com/)
|
|
- [OBS-Powershell](https://github.com/StartAutomating/obs-powershell)
|
|
|
|
## Use
|
|
|
|
This example assumes the following:
|
|
|
|
- OBS connection info saved in `config.psd1`, placed next to `Vm-Obs-Sync.ps1`:
|
|
|
|
```psd1
|
|
@{
|
|
host = "localhost"
|
|
port = 4455
|
|
password = "mystrongpassword"
|
|
}
|
|
```
|
|
|
|
- OBS scenes named `START`, `BRB`, `END` and `LIVE`
|
|
|
|
Simply run the script and change current OBS scene.
|
|
|
|
Closing OBS will end the script.
|