2022-11-04 01:51:40 +00:00
|
|
|
## About
|
|
|
|
|
|
|
|
Demonstrates how to sync Voicemeeter states with OBS scene switches.
|
|
|
|
|
|
|
|
## Requirements
|
|
|
|
|
|
|
|
- [OBS Studio 28+](https://obsproject.com/)
|
2022-12-16 17:16:02 +00:00
|
|
|
- [OBS-Powershell](https://github.com/StartAutomating/obs-powershell)
|
2022-11-04 01:51:40 +00:00
|
|
|
|
|
|
|
## Use
|
|
|
|
|
2022-11-04 02:07:23 +00:00
|
|
|
This example assumes the following:
|
2022-12-16 17:16:02 +00:00
|
|
|
|
2022-11-04 02:07:23 +00:00
|
|
|
- OBS connection info saved in `config.psd1`, placed next to `Vm-Obs-Sync.ps1`:
|
2022-11-04 01:51:40 +00:00
|
|
|
|
|
|
|
```psd1
|
|
|
|
@{
|
|
|
|
hostname = "localhost"
|
|
|
|
port = 4455
|
|
|
|
password = "mystrongpassword"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2022-11-04 02:07:23 +00:00
|
|
|
- OBS scenes named `START`, `BRB`, `END` and `LIVE`
|
|
|
|
|
2022-11-04 01:51:40 +00:00
|
|
|
Simply run the script and change current OBS scene.
|