update example configs

update example configs
This commit is contained in:
onyx-and-iris 2022-06-16 18:58:31 +01:00
parent 328998f7e8
commit c5fcf5a0fd
8 changed files with 141 additions and 97 deletions

View File

@ -249,7 +249,7 @@ vm.vban.outstream[0].apply(on: true, name: 'streamname', bit: 24)
## Config Files ## Config Files
`vm.apply_config('config')` `vm.apply_config(<configname>)`
You may load config files in TOML format. You may load config files in TOML format.
Three example profiles have been included with the package. Remember to save Three example profiles have been included with the package. Remember to save
@ -258,7 +258,7 @@ current settings before loading a profile. To set one you may do:
```python ```python
import voicemeeterlib import voicemeeterlib
with voicemeeterlib.api('banana') as vm: with voicemeeterlib.api('banana') as vm:
vm.apply_config('config') vm.apply_config('example')
``` ```
will load a config file at configs/banana/config.toml for Voicemeeter Banana. will load a config file at configs/banana/config.toml for Voicemeeter Banana.

View File

@ -1,35 +0,0 @@
[strip-0]
limit = 12
label = ""
[strip-1]
A1 = true
A2 = true
A3 = true
B1 = true
B2 = true
mono = true
solo = true
mute = true
limit = 12
label = ""
[strip-2]
limit = 12
label = ""
[strip-3]
limit = 12
label = ""
[strip-4]
A1 = false
A2 = false
A3 = false
B1 = false
B2 = false
k = false
solo = false
mute = false
limit = 12
label = ""

View File

@ -0,0 +1,45 @@
[strip-0]
label = "PhysStrip0"
A1 = true
gain = -8.8
comp = 3.2
[strip-1]
label = "PhysStrip1"
B1 = true
gate = 4.1
[strip-2]
label = "PhysStrip2"
gain = 1.1
limit = -15
[strip-3]
label = "VirtStrip0"
bass = -3.2
mid = 1.5
treble = 2.1
[strip-4]
label = "VirtStrip1"
limit = -12
[bus-0]
label = "PhysBus0"
mute = true
[bus-1]
label = "PhysBus1"
mono = true
[bus-2]
label = "PhysBus2"
eq = true
[bus-3]
label = "VirtBus0"
eq_ab = true
[bus-4]
label = "VirtBus1"
gain = -22.8

View File

@ -1,17 +0,0 @@
[strip-0]
A1 = true
B1 = true
mono = true
solo = true
mute = true
limit = 12
label = ""
[strip-1]
A1 = false
B1 = false
mono = false
solo = false
mute = false
limit = 12
label = ""

View File

@ -0,0 +1,23 @@
[strip-0]
label = "PhysStrip0"
A1 = true
gain = -8.8
[strip-1]
label = "PhysStrip1"
B1 = true
audibility = 3.2
[strip-2]
label = "VirtStrip0"
bass = -3.2
mid = 1.5
treble = 2.1
[bus-0]
label = "PhysBus0"
mute = true
[bus-1]
label = "PhysBus1"
mono = true

View File

@ -1,42 +0,0 @@
[strip-0]
limit = 12
label = ""
[strip-1]
limit = 12
label = ""
[strip-2]
A1 = true
A2 = true
A3 = true
A4 = true
A5 = true
B1 = true
B2 = true
B3 = true
mono = true
solo = true
mute = true
limit = 12
label = ""
[strip-3]
limit = 12
label = ""
[strip-4]
limit = 12
label = ""
[strip-5]
limit = 12
label = ""
[strip-6]
limit = 12
label = ""
[strip-7]
limit = 12
label = ""

View File

@ -0,0 +1,70 @@
[strip-0]
label = "PhysStrip0"
A1 = true
gain = -8.8
comp = 3.2
[strip-1]
label = "PhysStrip1"
B1 = true
gate = 4.1
[strip-2]
label = "PhysStrip2"
gain = 1.1
limit = -15
[strip-3]
label = "PhysStrip3"
B2 = false
[strip-4]
label = "PhysStrip4"
B3 = true
gain = -8.8
[strip-5]
label = "VirtStrip0"
A3 = true
A5 = true
bass = -3.2
mid = 1.5
treble = 2.1
[strip-6]
label = "VirtStrip1"
limit = -12
k = 3
[strip-7]
label = "VirtStrip2"
mc = true
[bus-0]
label = "PhysBus0"
mute = true
[bus-1]
label = "PhysBus1"
mono = true
[bus-2]
label = "PhysBus2"
eq = true
[bus-3]
label = "PhysBus3"
[bus-4]
label = "PhysBus4"
[bus-5]
label = "VirtBus0"
eq_ab = true
[bus-6]
label = "VirtBus1"
gain = -22.8
[bus-7]
label = "VirtBus2"

View File

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "voicemeeter-api" name = "voicemeeter-api"
version = "0.1.1" version = "0.1.2"
description = "A Python wrapper for the Voiceemeter API" description = "A Python wrapper for the Voiceemeter API"
authors = ["onyx-and-iris <code@onyxandiris.online>"] authors = ["onyx-and-iris <code@onyxandiris.online>"]
license = "MIT" license = "MIT"