rewording in obs example

This commit is contained in:
onyx-and-iris 2022-10-17 13:14:08 +01:00
parent bac60e5ed3
commit c86f7971b0

View File

@ -10,9 +10,9 @@ With the vban-cmd and obsws-python packages you may sync a distant Voicemeeter w
## Configure ## Configure
This script assumes you have your OBS connection info saved in a config file named `config.toml`. This script assumes the following:
A valid `config.toml` file might look like this: - OBS Connection info in a valid `config.toml`:
```toml ```toml
[connection] [connection]
@ -21,9 +21,7 @@ port = 4455
password = "mystrongpass" password = "mystrongpass"
``` ```
It also assumes you have your VBAN connection info saved in a config file named `vban.toml`. - VBAN Connection info in a valid `config.toml`:
A valid `vban.toml` file might look like this:
```toml ```toml
[connection] [connection]
@ -32,9 +30,9 @@ port = 6980
streamname = "Command1" streamname = "Command1"
``` ```
Both configs should be placed next to `__main__.py`. - Both configs should be placed next to `__main__.py`.
The script also assumes four OBS scenes names "START", "BRB", "END" and "LIVE". - Four OBS scenes named "START", "BRB", "END" and "LIVE".
## Use ## Use