mirror of
https://github.com/onyx-and-iris/voicemeeter-api-python.git
synced 2024-11-15 16:40:46 +00:00
device section added to readme
This commit is contained in:
parent
5e289cb264
commit
771bc223ac
14
README.md
14
README.md
@ -356,6 +356,20 @@ vm.command.showvbanchat = True
|
|||||||
|
|
||||||
`showvbanchat` and `lock` are write only.
|
`showvbanchat` and `lock` are write only.
|
||||||
|
|
||||||
|
### Device
|
||||||
|
|
||||||
|
- `ins` `outs` : Returns the number of input/output devices
|
||||||
|
- `input(i)` `output(i)` : Returns a dict of device properties for device[i]
|
||||||
|
|
||||||
|
example:
|
||||||
|
|
||||||
|
```python
|
||||||
|
import voicemeeterlib
|
||||||
|
with voicemeeterlib.api(kind_id) as vm:
|
||||||
|
for i in range(vm.device.ins):
|
||||||
|
print(vm.device.input(i))
|
||||||
|
```
|
||||||
|
|
||||||
### Multiple parameters
|
### Multiple parameters
|
||||||
|
|
||||||
- `apply`
|
- `apply`
|
||||||
|
Loading…
Reference in New Issue
Block a user