mirror of
https://github.com/onyx-and-iris/voicemeeter-api-powershell.git
synced 2025-01-18 13:20:47 +00:00
readme, changelog updated
This commit is contained in:
parent
1397c14522
commit
a40adf27be
@ -9,7 +9,7 @@ Before any major/minor/patch is released all test units will be run to verify th
|
|||||||
|
|
||||||
## [Unreleased] These changes have not been added to PSGallery yet
|
## [Unreleased] These changes have not been added to PSGallery yet
|
||||||
|
|
||||||
- []
|
- [x] Debug statements added to Getters, Setters in higher classes.
|
||||||
|
|
||||||
## [3.1.0]
|
## [3.1.0]
|
||||||
|
|
||||||
@ -18,6 +18,7 @@ Before any major/minor/patch is released all test units will be run to verify th
|
|||||||
- Level methods for Strip class implemented. See Strip.levels section in README.
|
- Level methods for Strip class implemented. See Strip.levels section in README.
|
||||||
- Level methods for Bus class implemented. See Bus.levels section in README.
|
- Level methods for Bus class implemented. See Bus.levels section in README.
|
||||||
- More Recorder commands implemented. See Recorder section in README.
|
- More Recorder commands implemented. See Recorder section in README.
|
||||||
|
- RunMacrobuttons, CloseMacrobuttons added to Special class
|
||||||
|
|
||||||
## [3.0.0]
|
## [3.0.0]
|
||||||
|
|
||||||
|
84
README.md
84
README.md
@ -115,13 +115,13 @@ $vmr.Logout()
|
|||||||
|
|
||||||
The following strip commands are available:
|
The following strip commands are available:
|
||||||
|
|
||||||
- mute: boolean
|
- mute: bool
|
||||||
- mono: boolean
|
- mono: bool
|
||||||
- mc: boolean
|
- mc: bool
|
||||||
- k: int, from 0 to 4
|
- k: int, from 0 to 4
|
||||||
- solo: boolean
|
- solo: bool
|
||||||
- A1-A5: boolean
|
- A1-A5: bool
|
||||||
- B1-B3: boolean
|
- B1-B3: bool
|
||||||
- limit: int, from -40 to 12
|
- limit: int, from -40 to 12
|
||||||
- gain: float, from -60.0 to 12.0
|
- gain: float, from -60.0 to 12.0
|
||||||
- label: string
|
- label: string
|
||||||
@ -135,10 +135,10 @@ The following strip commands are available:
|
|||||||
- color_y: float, from 0.0 to 1.0
|
- color_y: float, from 0.0 to 1.0
|
||||||
- fx_x: float, from -0.5 to 0.5
|
- fx_x: float, from -0.5 to 0.5
|
||||||
- fx_y: float, from 0.0 to 1.0
|
- fx_y: float, from 0.0 to 1.0
|
||||||
- postreverb: boolean
|
- postreverb: bool
|
||||||
- postdelay: boolean
|
- postdelay: bool
|
||||||
- postfx1: boolean
|
- postfx1: bool
|
||||||
- postfx2: boolean
|
- postfx2: bool
|
||||||
- gainlayer0-gainlayer7: float
|
- gainlayer0-gainlayer7: float
|
||||||
|
|
||||||
for example:
|
for example:
|
||||||
@ -165,7 +165,7 @@ The following strip.comp commands are available:
|
|||||||
- release: float, from 0.0 to 5000.0
|
- release: float, from 0.0 to 5000.0
|
||||||
- knee: float, 0.0 to 1.0
|
- knee: float, 0.0 to 1.0
|
||||||
- gainout: float, from -24.0 to 24.0
|
- gainout: float, from -24.0 to 24.0
|
||||||
- makeup: boolean
|
- makeup: bool
|
||||||
|
|
||||||
for example:
|
for example:
|
||||||
|
|
||||||
@ -206,7 +206,7 @@ $vmr.strip[3].denoiser.knob = 5
|
|||||||
#### AppGain | AppMute
|
#### AppGain | AppMute
|
||||||
|
|
||||||
- `AppGain(amount, gain)` : string, float
|
- `AppGain(amount, gain)` : string, float
|
||||||
- `AppMute(amount, mutestate)` : string, boolean
|
- `AppMute(amount, mutestate)` : string, bool
|
||||||
|
|
||||||
for example:
|
for example:
|
||||||
|
|
||||||
@ -253,18 +253,18 @@ $vmr.bus[3].returnreverb = 5.7
|
|||||||
|
|
||||||
The following bus.mode members are available:
|
The following bus.mode members are available:
|
||||||
|
|
||||||
- normal: boolean
|
- normal: bool
|
||||||
- amix: boolean
|
- amix: bool
|
||||||
- bmix: boolean
|
- bmix: bool
|
||||||
- repeat: boolean
|
- repeat: bool
|
||||||
- composite: boolean
|
- composite: bool
|
||||||
- tvmix: boolean
|
- tvmix: bool
|
||||||
- upmix21: boolean
|
- upmix21: bool
|
||||||
- upmix41: boolean
|
- upmix41: bool
|
||||||
- upmix61: boolean
|
- upmix61: bool
|
||||||
- centeronly: boolean
|
- centeronly: bool
|
||||||
- lfeonly: boolean
|
- lfeonly: bool
|
||||||
- rearonly: boolean
|
- rearonly: bool
|
||||||
|
|
||||||
The following bus.mode commands are available:
|
The following bus.mode commands are available:
|
||||||
|
|
||||||
@ -317,8 +317,8 @@ wdm, ks, mme, asio are defined as write only.
|
|||||||
|
|
||||||
The following strip.eq | bus.eq commands are available:
|
The following strip.eq | bus.eq commands are available:
|
||||||
|
|
||||||
- on: boolean
|
- on: bool
|
||||||
- ab: boolean
|
- ab: bool
|
||||||
|
|
||||||
for example:
|
for example:
|
||||||
|
|
||||||
@ -359,19 +359,19 @@ $vmr.button[5].trigger = $true
|
|||||||
|
|
||||||
### VBAN
|
### VBAN
|
||||||
|
|
||||||
- vmr.vban.enable: Toggle VBAN on or off. Accepts a boolean value.
|
- vmr.vban.enable: Toggle VBAN on or off. Accepts a bool value.
|
||||||
|
|
||||||
For each vban in/out stream the following parameters are defined:
|
For each vban in/out stream the following parameters are defined:
|
||||||
|
|
||||||
- on: boolean
|
- on: bool
|
||||||
- name: string
|
- name: string
|
||||||
- ip: string
|
- ip: string
|
||||||
- port: int from 1024 - 65535
|
- port: int, from 1024 - 65535
|
||||||
- sr: int (11025, 16000, 22050, 24000, 32000, 44100, 48000, 64000, 88200, 96000)
|
- sr: in, (11025, 16000, 22050, 24000, 32000, 44100, 48000, 64000, 88200, 96000)
|
||||||
- channel: int from 1 to 8
|
- channel: int from 1 to 8
|
||||||
- bit: int 16 or 24
|
- bit: int, 16 or 24
|
||||||
- quality: int from 0 to 4
|
- quality: int, from 0 to 4
|
||||||
- route: int from 0 to 8
|
- route: int, from 0 to 8
|
||||||
|
|
||||||
SR, channel and bit are defined as readonly for instreams. Attempting to write
|
SR, channel and bit are defined as readonly for instreams. Attempting to write
|
||||||
to those parameters will throw an error. They are read and write for outstreams.
|
to those parameters will throw an error. They are read and write for outstreams.
|
||||||
@ -396,8 +396,8 @@ The following commands are available:
|
|||||||
- hide
|
- hide
|
||||||
- restart
|
- restart
|
||||||
- shutdown
|
- shutdown
|
||||||
- showvbanchat: boolean (write only)
|
- showvbanchat: bool, (write only)
|
||||||
- lock: boolean (write only)
|
- lock: bool, (write only)
|
||||||
|
|
||||||
The following methods are available:
|
The following methods are available:
|
||||||
|
|
||||||
@ -423,12 +423,12 @@ The following commands are available:
|
|||||||
- record
|
- record
|
||||||
- ff
|
- ff
|
||||||
- rew
|
- rew
|
||||||
- A1 - A5: boolean
|
- A1 - A5: bool
|
||||||
- B1 - B3: boolean
|
- B1 - B3: bool
|
||||||
- samplerate: int (22050, 24000, 32000, 44100, 48000, 88200, 96000, 176400, 192000)
|
- samplerate: int, (22050, 24000, 32000, 44100, 48000, 88200, 96000, 176400, 192000)
|
||||||
- bitresolution: int (8, 16, 24, 32)
|
- bitresolution: int, (8, 16, 24, 32)
|
||||||
- channel: int from 1 to 8
|
- channel: int, from 1 to 8
|
||||||
- kbps: int (32, 40, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 256, 320)
|
- kbps: int, (32, 40, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 256, 320)
|
||||||
|
|
||||||
The following methods are available:
|
The following methods are available:
|
||||||
|
|
||||||
@ -464,7 +464,7 @@ $vmr.recorder.mode.loop = $true
|
|||||||
|
|
||||||
The following method is available:
|
The following method is available:
|
||||||
|
|
||||||
- Set($val): boolean
|
- Set($val): bool
|
||||||
|
|
||||||
example:
|
example:
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user