mirror of
https://github.com/onyx-and-iris/voicemeeter-api-powershell.git
synced 2025-12-05 05:07:47 +00:00
update docs
manual tests all pass: - asio[i].set($val) - asio[i].get() - outa2[i]-outa5[i].set($val) - outa2[i]-outa5[i].get() these require an asio device
This commit is contained in:
parent
dce6f37bf1
commit
54319924d0
@ -13,6 +13,7 @@ Before any major/minor/patch is released all test units will be run to verify th
|
|||||||
|
|
||||||
- IRemote base class
|
- IRemote base class
|
||||||
- ArrayMember classes for array-like properties
|
- ArrayMember classes for array-like properties
|
||||||
|
- Patch class
|
||||||
|
|
||||||
## [3.3.0] - 2024-06-29
|
## [3.3.0] - 2024-06-29
|
||||||
|
|
||||||
|
|||||||
25
README.md
25
README.md
@ -417,6 +417,31 @@ $vmr.command.Load("path/to/filename.xml")
|
|||||||
$vmr.command.RunMacrobuttons()
|
$vmr.command.RunMacrobuttons()
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Patch
|
||||||
|
|
||||||
|
The following Patch commands are available:
|
||||||
|
|
||||||
|
- postFaderComposite: bool
|
||||||
|
- Patch.postFxInsert: bool
|
||||||
|
|
||||||
|
The following Patch methods are available:
|
||||||
|
|
||||||
|
- asio[i].Set($val): int, from 0 to ASIO input channels
|
||||||
|
- OutA2[i]-OutA5[i].Set($val): int, from 0 to ASIO output channels
|
||||||
|
- composite[i].Set($val): int, from 0 to strip channels
|
||||||
|
- insert[i].Set($val): bool
|
||||||
|
|
||||||
|
All members also have Get() available
|
||||||
|
|
||||||
|
for example:
|
||||||
|
|
||||||
|
```powershell
|
||||||
|
$vmr.asio[3].set(2) # patches ASIO input channel 2 (2) to strip 2, channel 2 (3)
|
||||||
|
$vmr.OutA3[0].set(24) # patches bus A3, channel 1 (0) to ASIO output channel 24
|
||||||
|
$vmr.composite[5].set(0) # sets composite channel 6 (5) to default bus channel
|
||||||
|
$vmr.insert[4].get()
|
||||||
|
```
|
||||||
|
|
||||||
### Recorder
|
### Recorder
|
||||||
|
|
||||||
The following commands are available:
|
The following commands are available:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user