mirror of
https://github.com/onyx-and-iris/voicemeeter-api-python.git
synced 2026-04-18 12:33:34 +00:00
added strip/bus device mixins.
device_prop added to meta README, CHANGELOG updated to reflect changes. minor version bump fixes #3
This commit is contained in:
25
README.md
25
README.md
@@ -114,8 +114,6 @@ The following properties are available.
|
||||
- `limit`: int, from -40 to 12
|
||||
- `A1 - A5`, `B1 - B3`: boolean
|
||||
- `label`: string
|
||||
- `device`: string
|
||||
- `sr`: int
|
||||
- `mc`: boolean
|
||||
- `k`: int, from 0 to 4
|
||||
- `bass`: float, from -12.0 to 12.0
|
||||
@@ -199,8 +197,6 @@ The following properties are available.
|
||||
- `sel`: boolean
|
||||
- `gain`: float, from -60.0 to 12.0
|
||||
- `label`: string
|
||||
- `device`: string
|
||||
- `sr`: int
|
||||
- `returnreverb`: float, from 0.0 to 10.0
|
||||
- `returndelay`: float, from 0.0 to 10.0
|
||||
- `returnfx1`: float, from 0.0 to 10.0
|
||||
@@ -274,6 +270,27 @@ vm.strip[0].fadeto(-10.3, 1000)
|
||||
vm.bus[3].fadeby(-5.6, 500)
|
||||
```
|
||||
|
||||
#### Strip.Device | Bus.Device
|
||||
|
||||
The following properties are available
|
||||
|
||||
- `name`: str
|
||||
- `sr`: int
|
||||
- `wdm`: str
|
||||
- `ks`: str
|
||||
- `mme`: str
|
||||
- `asio`: str
|
||||
|
||||
example:
|
||||
|
||||
```python
|
||||
print(vm.strip[0].device.name)
|
||||
vm.bus[0].device.asio = "Audient USB Audio ASIO Driver"
|
||||
```
|
||||
|
||||
strip|bus device parameters are defined for physical channels only.
|
||||
name, sr are read only. wdm, ks, mme, asio are write only.
|
||||
|
||||
### Macrobuttons
|
||||
|
||||
The following properties are available.
|
||||
|
||||
Reference in New Issue
Block a user